diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java index f62e6092dbe..8cc1a40c4ff 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/JsonParser.java @@ -233,13 +233,21 @@ public class JsonParser extends BaseParser implements IJsonLikeParser { } // check for the common case first - String value types - if (value.getValue() instanceof String) { + Object valueObj = value.getValue(); + if (valueObj instanceof String) { if (theChildName != null) { theEventWriter.write(theChildName, valueStr); } else { theEventWriter.write(valueStr); } break; + } else if (valueObj instanceof Long) { + if (theChildName != null) { + theEventWriter.write(theChildName, (long)valueObj); + } else { + theEventWriter.write((long)valueObj); + } + break; } if (value instanceof IBaseIntegerDatatype) { diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java index 3ca4f7e9daa..d47934000da 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/parser/XmlParser.java @@ -707,6 +707,12 @@ public class XmlParser extends BaseParser { theEventWriter.writeStartElement(prefix, se.getName().getLocalPart(), namespaceURI); theEventWriter.writeNamespace(prefix, namespaceURI); } + for (Iterator iter= se.getAttributes(); iter.hasNext(); ) { + Attribute next = iter.next(); + if ("lang".equals(next.getName().getLocalPart())) { + theEventWriter.writeAttribute("", "", next.getName().getLocalPart(), next.getValue()); + } + } firstElement = false; } else { if (isBlank(se.getName().getPrefix())) { diff --git a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java index 272c1a94046..6ad01b5b9e1 100644 --- a/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java +++ b/hapi-fhir-base/src/main/java/ca/uhn/fhir/util/AttachmentUtil.java @@ -85,6 +85,8 @@ public class AttachmentUtil { BaseRuntimeChildDefinition entryChild = getChild(theContext, theAttachment, "size"); if (theLength == null) { entryChild.getMutator().setValue(theAttachment, null); + } else if (theContext.getVersion().getVersion().isEqualOrNewerThan(FhirVersionEnum.R5)){ + entryChild.getMutator().setValue(theAttachment, newPrimitive(theContext, "integer64", (long)theLength)); } else { entryChild.getMutator().setValue(theAttachment, newPrimitive(theContext, "unsignedInt", theLength)); } diff --git a/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java new file mode 100644 index 00000000000..fe302b8a76b --- /dev/null +++ b/hapi-fhir-base/src/main/java/org/hl7/fhir/instance/model/api/IBaseLongDatatype.java @@ -0,0 +1,26 @@ +package org.hl7.fhir.instance.model.api; + +/* + * #%L + * HAPI FHIR - Core Library + * %% + * Copyright (C) 2014 - 2019 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% + */ + + +public interface IBaseLongDatatype extends IPrimitiveType { + +} diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/4_2_0/changes.yaml b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/4_2_0/changes.yaml index 5f2bd2bc036..79336532b05 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/4_2_0/changes.yaml +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/changelog/4_2_0/changes.yaml @@ -64,6 +64,11 @@ issue: "1649" type: "add" title: "Support for LOINC 2.67 file format changes has been added to the JPA Server LOINC uploader. Thanks to Dan Vreeman for reporting!" +- item: + issue: "1658" + type: "fix" + title: "When parsing HTML Narratives, the `lang` attribute was stripped from the outer DIV tag if present. Thanks to +Sean McIlvenna for reporting!" - item: issue: "1655" type: "fix" diff --git a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/versions.md b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/versions.md index 3f2e6726429..27e2f13f6a8 100644 --- a/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/versions.md +++ b/hapi-fhir-docs/src/main/resources/ca/uhn/hapi/fhir/docs/introduction/versions.md @@ -25,6 +25,16 @@ Note also that after the release of the FHIR DSTU2 specification, the FHIR + + HAPI FHIR 4.2.0-SNAPSHOT + JDK8 + + 1.0.2 + 1.4.0 + 3.0.2 + 4.0.1 + 4.2.0
e0f3f5cc2c
+ HAPI FHIR 4.1.0 JDK8 diff --git a/hapi-fhir-jaxrsserver-base/src/test/java/ca/uhn/fhir/jaxrs/client/GenericJaxRsClientDstu3Test.java b/hapi-fhir-jaxrsserver-base/src/test/java/ca/uhn/fhir/jaxrs/client/GenericJaxRsClientDstu3Test.java index 48a03513567..ef0512ee1be 100644 --- a/hapi-fhir-jaxrsserver-base/src/test/java/ca/uhn/fhir/jaxrs/client/GenericJaxRsClientDstu3Test.java +++ b/hapi-fhir-jaxrsserver-base/src/test/java/ca/uhn/fhir/jaxrs/client/GenericJaxRsClientDstu3Test.java @@ -1356,7 +1356,7 @@ public class GenericJaxRsClientDstu3Test { .execute(); fail(); } catch (InvalidResponseException e) { - assertThat(e.getMessage(), containsString("Unable to Parse HTML - node")); + assertThat(e.getMessage(), containsString("Unable to Parse HTML")); } //@formatter:on } diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java index f0f48711362..ef7d039337b 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoSubscriptionR5.java @@ -20,29 +20,20 @@ package ca.uhn.fhir.jpa.dao.r5; * #L% */ -import ca.uhn.fhir.context.RuntimeResourceDefinition; import ca.uhn.fhir.jpa.dao.BaseHapiFhirResourceDao; -import ca.uhn.fhir.jpa.dao.IFhirResourceDao; import ca.uhn.fhir.jpa.dao.IFhirResourceDaoSubscription; import ca.uhn.fhir.jpa.dao.data.ISubscriptionTableDao; import ca.uhn.fhir.jpa.entity.SubscriptionTable; import ca.uhn.fhir.jpa.model.cross.IBasePersistedResource; import ca.uhn.fhir.jpa.model.entity.ResourceTable; -import ca.uhn.fhir.parser.DataFormatException; -import ca.uhn.fhir.rest.api.EncodingEnum; import ca.uhn.fhir.rest.api.server.RequestDetails; -import ca.uhn.fhir.rest.server.exceptions.UnprocessableEntityException; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IIdType; import org.hl7.fhir.r5.model.Subscription; -import org.hl7.fhir.r5.model.codesystems.SubscriptionChannelType; import org.springframework.beans.factory.annotation.Autowired; -import javax.annotation.Nullable; import java.util.Date; -import static org.apache.commons.lang3.StringUtils.isBlank; - public class FhirResourceDaoSubscriptionR5 extends BaseHapiFhirResourceDao implements IFhirResourceDaoSubscription { @Autowired diff --git a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java index 4214dce1a6f..362558e2459 100644 --- a/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java +++ b/hapi-fhir-jpaserver-base/src/main/java/ca/uhn/fhir/jpa/dao/r5/FhirResourceDaoValueSetR5.java @@ -38,15 +38,18 @@ import org.hl7.fhir.instance.model.api.IPrimitiveType; import org.hl7.fhir.r5.hapi.ctx.DefaultProfileValidationSupport; import org.hl7.fhir.r5.hapi.ctx.HapiWorkerContext; import org.hl7.fhir.r5.hapi.ctx.IValidationSupport; -import org.hl7.fhir.r5.model.*; +import org.hl7.fhir.r5.model.CodeSystem; +import org.hl7.fhir.r5.model.CodeableConcept; +import org.hl7.fhir.r5.model.Coding; +import org.hl7.fhir.r5.model.Enumerations; import org.hl7.fhir.r5.model.Enumerations.PublicationStatus; +import org.hl7.fhir.r5.model.IntegerType; +import org.hl7.fhir.r5.model.ValueSet; import org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent; import org.hl7.fhir.r5.model.ValueSet.ConceptSetFilterComponent; -import org.hl7.fhir.r5.model.ValueSet.FilterOperator; import org.hl7.fhir.r5.model.ValueSet.ValueSetExpansionContainsComponent; import org.hl7.fhir.r5.terminologies.ValueSetExpander.ValueSetExpansionOutcome; import org.springframework.beans.factory.annotation.Autowired; -import org.springframework.beans.factory.annotation.Qualifier; import java.util.Collections; import java.util.Date; @@ -172,7 +175,7 @@ public class FhirResourceDaoValueSetR5 extends BaseHapiFhirResourceDao ConceptSetComponent include = source.getCompose().addInclude(); ConceptSetFilterComponent filter = include.addFilter(); filter.setProperty("display"); - filter.setOp(FilterOperator.EQUAL); + filter.setOp(Enumerations.FilterOperator.EQUAL); filter.setValue(theFilter); } @@ -207,7 +210,7 @@ public class FhirResourceDaoValueSetR5 extends BaseHapiFhirResourceDao ConceptSetComponent include = source.getCompose().addInclude(); ConceptSetFilterComponent filter = include.addFilter(); filter.setProperty("display"); - filter.setOp(FilterOperator.EQUAL); + filter.setOp(Enumerations.FilterOperator.EQUAL); filter.setValue(theFilter); } @@ -289,7 +292,7 @@ public class FhirResourceDaoValueSetR5 extends BaseHapiFhirResourceDao private void addFilterIfPresent(String theFilter, ConceptSetComponent include) { if (ElementUtil.isEmpty(include.getConcept())) { if (isNotBlank(theFilter)) { - include.addFilter().setProperty("display").setOp(FilterOperator.EQUAL).setValue(theFilter); + include.addFilter().setProperty("display").setOp(Enumerations.FilterOperator.EQUAL).setValue(theFilter); } } } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4ValidateTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4ValidateTest.java index 280ce3d021f..74bfa659695 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4ValidateTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/dao/r4/FhirResourceDaoR4ValidateTest.java @@ -127,7 +127,7 @@ public class FhirResourceDaoR4ValidateTest extends BaseJpaR4Test { obs.getCode().getCodingFirstRep().setSystem("http://loinc.org").setCode("CODE3").setDisplay("Display 3"); obs.getCategoryFirstRep().addCoding().setSystem("http://terminology.hl7.org/CodeSystem/observation-category").setCode("FOO"); oo = validateAndReturnOutcome(obs); - assertEquals(encode(oo), "Unknown code: http://terminology.hl7.org/CodeSystem/observation-category / FOO", oo.getIssueFirstRep().getDiagnostics()); + assertEquals(encode(oo), "Unknown code[FOO] in system[http://terminology.hl7.org/CodeSystem/observation-category]", oo.getIssueFirstRep().getDiagnostics()); } @@ -208,7 +208,7 @@ public class FhirResourceDaoR4ValidateTest extends BaseJpaR4Test { obs.getCode().getCodingFirstRep().setSystem("http://loinc.org").setCode("CODE3").setDisplay("Display 3"); obs.getCategoryFirstRep().addCoding().setSystem("http://terminology.hl7.org/CodeSystem/observation-category").setCode("FOO"); oo = validateAndReturnOutcome(obs); - assertEquals(encode(oo), "Unknown code: http://terminology.hl7.org/CodeSystem/observation-category / FOO", oo.getIssueFirstRep().getDiagnostics()); + assertEquals(encode(oo), "Unknown code[FOO] in system[http://terminology.hl7.org/CodeSystem/observation-category]", oo.getIssueFirstRep().getDiagnostics()); } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r5/ResourceProviderR5ValueSetTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r5/ResourceProviderR5ValueSetTest.java index de6cd21ce43..346ac91dcf3 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r5/ResourceProviderR5ValueSetTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/provider/r5/ResourceProviderR5ValueSetTest.java @@ -3,8 +3,13 @@ package ca.uhn.fhir.jpa.provider.r5; import ca.uhn.fhir.jpa.dao.DaoConfig; import ca.uhn.fhir.jpa.dao.IFhirResourceDao; import ca.uhn.fhir.jpa.dao.data.IResourceTableDao; -import ca.uhn.fhir.jpa.entity.*; +import ca.uhn.fhir.jpa.entity.TermCodeSystemVersion; +import ca.uhn.fhir.jpa.entity.TermConcept; import ca.uhn.fhir.jpa.entity.TermConceptParentChildLink.RelationshipTypeEnum; +import ca.uhn.fhir.jpa.entity.TermValueSet; +import ca.uhn.fhir.jpa.entity.TermValueSetConcept; +import ca.uhn.fhir.jpa.entity.TermValueSetConceptDesignation; +import ca.uhn.fhir.jpa.entity.TermValueSetPreExpansionStatusEnum; import ca.uhn.fhir.jpa.model.cross.ResourcePersistentId; import ca.uhn.fhir.jpa.model.entity.ResourceTable; import ca.uhn.fhir.jpa.term.api.ITermCodeSystemStorageSvc; @@ -23,11 +28,10 @@ import org.apache.http.entity.ContentType; import org.apache.http.entity.StringEntity; import org.hl7.fhir.instance.model.api.IIdType; import org.hl7.fhir.r5.model.*; +import org.hl7.fhir.r5.model.Bundle.HTTPVerb; import org.hl7.fhir.r5.model.CodeSystem.CodeSystemContentMode; import org.hl7.fhir.r5.model.CodeSystem.ConceptDefinitionComponent; import org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent; -import org.hl7.fhir.r5.model.ValueSet.FilterOperator; -import org.hl7.fhir.r5.model.codesystems.HttpVerb; import org.junit.After; import org.junit.AfterClass; import org.junit.Test; @@ -41,8 +45,16 @@ import java.util.Optional; import static ca.uhn.fhir.jpa.dao.r4.FhirResourceDaoR4TerminologyTest.URL_MY_CODE_SYSTEM; import static ca.uhn.fhir.jpa.dao.r4.FhirResourceDaoR4TerminologyTest.URL_MY_VALUE_SET; -import static org.hamcrest.Matchers.*; -import static org.junit.Assert.*; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.containsStringIgnoringCase; +import static org.hamcrest.Matchers.not; +import static org.hamcrest.Matchers.stringContainsInOrder; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertSame; +import static org.junit.Assert.assertThat; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @@ -54,35 +66,35 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { private Long myExtensionalVsIdOnResourceTable; private ValueSet myLocalVs; - private void loadAndPersistCodeSystemAndValueSet(HttpVerb theVerb) throws IOException { + private void loadAndPersistCodeSystemAndValueSet(HTTPVerb theVerb) throws IOException { loadAndPersistCodeSystem(theVerb); loadAndPersistValueSet(theVerb); } - private void loadAndPersistCodeSystemAndValueSetWithDesignations(HttpVerb theVerb) throws IOException { + private void loadAndPersistCodeSystemAndValueSetWithDesignations(HTTPVerb theVerb) throws IOException { loadAndPersistCodeSystemWithDesignations(theVerb); loadAndPersistValueSet(theVerb); } - private void loadAndPersistCodeSystemAndValueSetWithDesignationsAndExclude(HttpVerb theVerb) throws IOException { + private void loadAndPersistCodeSystemAndValueSetWithDesignationsAndExclude(HTTPVerb theVerb) throws IOException { loadAndPersistCodeSystemWithDesignations(theVerb); loadAndPersistValueSetWithExclude(theVerb); } - private void loadAndPersistCodeSystem(HttpVerb theVerb) throws IOException { + private void loadAndPersistCodeSystem(HTTPVerb theVerb) throws IOException { CodeSystem codeSystem = loadResourceFromClasspath(CodeSystem.class, "/extensional-case-3-cs.xml"); codeSystem.setId("CodeSystem/cs"); persistCodeSystem(codeSystem, theVerb); } - private void loadAndPersistCodeSystemWithDesignations(HttpVerb theVerb) throws IOException { + private void loadAndPersistCodeSystemWithDesignations(HTTPVerb theVerb) throws IOException { CodeSystem codeSystem = loadResourceFromClasspath(CodeSystem.class, "/extensional-case-3-cs-with-designations.xml"); codeSystem.setId("CodeSystem/cs"); persistCodeSystem(codeSystem, theVerb); } @SuppressWarnings("EnumSwitchStatementWhichMissesCases") - private void persistCodeSystem(CodeSystem theCodeSystem, HttpVerb theVerb) { + private void persistCodeSystem(CodeSystem theCodeSystem, HTTPVerb theVerb) { switch (theVerb) { case POST: new TransactionTemplate(myTxManager).execute(new TransactionCallbackWithoutResult() { @@ -106,20 +118,20 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { myExtensionalCsIdOnResourceTable = myCodeSystemDao.readEntity(myExtensionalCsId, null).getId(); } - private void loadAndPersistValueSet(HttpVerb theVerb) throws IOException { + private void loadAndPersistValueSet(HTTPVerb theVerb) throws IOException { ValueSet valueSet = loadResourceFromClasspath(ValueSet.class, "/extensional-case-3-vs.xml"); valueSet.setId("ValueSet/vs"); persistValueSet(valueSet, theVerb); } - private void loadAndPersistValueSetWithExclude(HttpVerb theVerb) throws IOException { + private void loadAndPersistValueSetWithExclude(HTTPVerb theVerb) throws IOException { ValueSet valueSet = loadResourceFromClasspath(ValueSet.class, "/extensional-case-3-vs-with-exclude.xml"); valueSet.setId("ValueSet/vs"); persistValueSet(valueSet, theVerb); } @SuppressWarnings("EnumSwitchStatementWhichMissesCases") - private void persistValueSet(ValueSet theValueSet, HttpVerb theVerb) { + private void persistValueSet(ValueSet theValueSet, HTTPVerb theVerb) { switch (theVerb) { case POST: new TransactionTemplate(myTxManager).execute(new TransactionCallbackWithoutResult() { @@ -195,7 +207,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { myLocalVs.setUrl(URL_MY_VALUE_SET); ConceptSetComponent include = myLocalVs.getCompose().addInclude(); include.setSystem(codeSystem.getUrl()); - include.addFilter().setProperty("concept").setOp(FilterOperator.ISA).setValue("ParentA"); + include.addFilter().setProperty("concept").setOp(Enumerations.FilterOperator.ISA).setValue("ParentA"); myLocalValueSetId = myValueSetDao.create(myLocalVs, mySrd).getId().toUnqualifiedVersionless(); } @@ -212,13 +224,13 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { myLocalVs.setUrl(URL_MY_VALUE_SET); ConceptSetComponent include = myLocalVs.getCompose().addInclude(); include.setSystem(codeSystem.getUrl()); - include.addFilter().setProperty("concept").setOp(FilterOperator.ISA).setValue("childFOOOOOOO"); + include.addFilter().setProperty("concept").setOp(Enumerations.FilterOperator.ISA).setValue("childFOOOOOOO"); myLocalValueSetId = myValueSetDao.create(myLocalVs, mySrd).getId().toUnqualifiedVersionless(); } @Test public void testExpandById() throws Exception { - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); Parameters respParam = ourClient .operation() @@ -250,7 +262,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { public void testExpandByIdWithPreExpansion() throws Exception { myDaoConfig.setPreExpandValueSets(true); - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); myTermSvc.preExpandDeferredValueSetsToTerminologyTables(); Parameters respParam = ourClient @@ -281,7 +293,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @Test public void testExpandByIdWithFilter() throws Exception { - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); Parameters respParam = ourClient .operation() @@ -302,7 +314,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { public void testExpandByIdWithFilterWithPreExpansion() throws Exception { myDaoConfig.setPreExpandValueSets(true); - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); myTermSvc.preExpandDeferredValueSetsToTerminologyTables(); Parameters respParam = ourClient @@ -322,7 +334,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @Test public void testExpandByUrl() throws Exception { - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); Parameters respParam = ourClient .operation() @@ -342,7 +354,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @Test public void testExpandByUrlWithBogusUrl() throws Exception { - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); try { ourClient @@ -361,7 +373,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { public void testExpandByUrlWithPreExpansion() throws Exception { myDaoConfig.setPreExpandValueSets(true); - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); myTermSvc.preExpandDeferredValueSetsToTerminologyTables(); Parameters respParam = ourClient @@ -384,7 +396,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { public void testExpandByUrlWithPreExpansionAndBogusUrl() throws Exception { myDaoConfig.setPreExpandValueSets(true); - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); myTermSvc.preExpandDeferredValueSetsToTerminologyTables(); try { @@ -402,7 +414,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @Test public void testExpandByValueSet() throws IOException { - loadAndPersistCodeSystem(HttpVerb.POST); + loadAndPersistCodeSystem(HTTPVerb.POST); ValueSet toExpand = loadResourceFromClasspath(ValueSet.class, "/extensional-case-3-vs.xml"); @@ -426,7 +438,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { public void testExpandByValueSetWithPreExpansion() throws IOException { myDaoConfig.setPreExpandValueSets(true); - loadAndPersistCodeSystem(HttpVerb.POST); + loadAndPersistCodeSystem(HTTPVerb.POST); myTermSvc.preExpandDeferredValueSetsToTerminologyTables(); ValueSet toExpand = loadResourceFromClasspath(ValueSet.class, "/extensional-case-3-vs.xml"); @@ -491,7 +503,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @Test public void testExpandInvalidParams() throws Exception { - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); try { ourClient @@ -717,7 +729,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { public void testUpdateValueSetTriggersAnotherPreExpansion() throws Exception { myDaoConfig.setPreExpandValueSets(true); - loadAndPersistCodeSystemAndValueSetWithDesignations(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSetWithDesignations(HTTPVerb.POST); CodeSystem codeSystem = myCodeSystemDao.read(myExtensionalCsId); ourLog.info("CodeSystem:\n" + myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(codeSystem)); @@ -732,7 +744,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { ValueSet updatedValueSet = valueSet; updatedValueSet.setName(valueSet.getName().concat(" - MODIFIED")); - persistValueSet(updatedValueSet, HttpVerb.PUT); + persistValueSet(updatedValueSet, HTTPVerb.PUT); updatedValueSet = myValueSetDao.read(myExtensionalVsId); ourLog.info("Updated ValueSet:\n" + myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(updatedValueSet)); @@ -746,7 +758,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { public void testUpdateValueSetTriggersAnotherPreExpansionUsingTransactionBundle() throws Exception { myDaoConfig.setPreExpandValueSets(true); - loadAndPersistCodeSystemAndValueSetWithDesignations(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSetWithDesignations(Bundle.HTTPVerb.POST); CodeSystem codeSystem = myCodeSystemDao.read(myExtensionalCsId); ourLog.info("CodeSystem:\n" + myFhirCtx.newJsonParser().setPrettyPrint(true).encodeResourceToString(codeSystem)); @@ -877,7 +889,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @Test public void testValidateCodeOperationByCodeAndSystemInstance() throws Exception { - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); Parameters respParam = ourClient .operation() @@ -938,7 +950,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { @Test public void testValidateCodeOperationByCodeAndSystemType() throws Exception { - loadAndPersistCodeSystemAndValueSet(HttpVerb.POST); + loadAndPersistCodeSystemAndValueSet(HTTPVerb.POST); Parameters respParam = ourClient .operation() @@ -996,7 +1008,7 @@ public class ResourceProviderR5ValueSetTest extends BaseResourceProviderR5Test { .addInclude() .setSystem("http://mycs") .addFilter() - .setOp(FilterOperator.ISA) + .setOp(Enumerations.FilterOperator.ISA) .setProperty("concept") .setValue("ParentA"); IIdType vsId = myValueSetDao.create(vs).getId().toUnqualifiedVersionless(); diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/BaseSubscriptionsR5Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/BaseSubscriptionsR5Test.java index 97f9814635b..add5808d885 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/BaseSubscriptionsR5Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/BaseSubscriptionsR5Test.java @@ -3,6 +3,7 @@ package ca.uhn.fhir.jpa.subscription; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.jpa.dao.DaoConfig; import ca.uhn.fhir.jpa.provider.r5.BaseResourceProviderR5Test; +import ca.uhn.fhir.jpa.subscription.module.CanonicalSubscriptionChannelType; import ca.uhn.fhir.jpa.subscription.module.LinkedBlockingQueueSubscribableChannel; import ca.uhn.fhir.rest.annotation.Create; import ca.uhn.fhir.rest.annotation.ResourceParam; @@ -21,9 +22,19 @@ import org.eclipse.jetty.servlet.ServletContextHandler; import org.eclipse.jetty.servlet.ServletHolder; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IIdType; -import org.hl7.fhir.r5.model.*; -import org.hl7.fhir.r5.model.codesystems.SubscriptionChannelType; -import org.junit.*; +import org.hl7.fhir.r5.model.Bundle; +import org.hl7.fhir.r5.model.CodeableConcept; +import org.hl7.fhir.r5.model.Coding; +import org.hl7.fhir.r5.model.Enumerations; +import org.hl7.fhir.r5.model.IdType; +import org.hl7.fhir.r5.model.Observation; +import org.hl7.fhir.r5.model.Subscription; +import org.hl7.fhir.r5.model.Topic; +import org.junit.After; +import org.junit.AfterClass; +import org.junit.Before; +import org.junit.BeforeClass; +import org.junit.Ignore; import org.springframework.beans.factory.annotation.Autowired; import javax.annotation.PostConstruct; @@ -131,8 +142,8 @@ public abstract class BaseSubscriptionsR5Test extends BaseResourceProviderR5Test Subscription.SubscriptionChannelComponent channel = subscription.getChannel(); channel.getType().addCoding() - .setSystem(SubscriptionChannelType.RESTHOOK.getSystem()) - .setCode(SubscriptionChannelType.RESTHOOK.toCode()); + .setSystem(CanonicalSubscriptionChannelType.RESTHOOK.getSystem()) + .setCode(CanonicalSubscriptionChannelType.RESTHOOK.toCode()); channel.getPayload().setContentType(thePayload); channel.setEndpoint(ourListenerServerBase); return subscription; @@ -158,7 +169,7 @@ public abstract class BaseSubscriptionsR5Test extends BaseResourceProviderR5Test coding.setCode(code); coding.setSystem(system); - observation.setStatus(Observation.ObservationStatus.FINAL); + observation.setStatus(Enumerations.ObservationStatus.FINAL); IIdType id = myObservationDao.create(observation).getId(); observation.setId(id); diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/resthook/RestHookTestR5Test.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/resthook/RestHookTestR5Test.java index 6160165c167..1aa5a058ddb 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/resthook/RestHookTestR5Test.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/jpa/subscription/resthook/RestHookTestR5Test.java @@ -131,7 +131,7 @@ public class RestHookTestR5Test extends BaseSubscriptionsR5Test { Observation observation = new Observation(); observation.getIdentifierFirstRep().setSystem("foo").setValue("1"); observation.getCode().addCoding().setCode(code).setSystem("SNOMED-CT"); - observation.setStatus(Observation.ObservationStatus.FINAL); + observation.setStatus(Enumerations.ObservationStatus.FINAL); observation.getSubject().setReference(patient.getId()); bundle.addEntry().setResource(observation).getRequest().setMethod(Bundle.HTTPVerb.POST).setUrl("Observation"); @@ -160,7 +160,7 @@ public class RestHookTestR5Test extends BaseSubscriptionsR5Test { Observation observation = new Observation(); observation.getIdentifierFirstRep().setSystem("foo").setValue("1"); observation.getCode().addCoding().setCode(code).setSystem("SNOMED-CT"); - observation.setStatus(Observation.ObservationStatus.FINAL); + observation.setStatus(Enumerations.ObservationStatus.FINAL); Bundle bundle = new Bundle(); bundle.setType(Bundle.BundleType.TRANSACTION); bundle.addEntry().setResource(observation).getRequest().setMethod(Bundle.HTTPVerb.POST).setUrl("Observation"); @@ -187,7 +187,7 @@ public class RestHookTestR5Test extends BaseSubscriptionsR5Test { observation.setId(obs.getId()); observation.getIdentifierFirstRep().setSystem("foo").setValue("2"); observation.getCode().addCoding().setCode(code).setSystem("SNOMED-CT"); - observation.setStatus(Observation.ObservationStatus.FINAL); + observation.setStatus(Enumerations.ObservationStatus.FINAL); bundle = new Bundle(); bundle.setType(Bundle.BundleType.TRANSACTION); bundle.addEntry().setResource(observation).getRequest().setMethod(Bundle.HTTPVerb.PUT).setUrl(obs.getIdElement().toUnqualifiedVersionless().getValue()); @@ -220,7 +220,7 @@ public class RestHookTestR5Test extends BaseSubscriptionsR5Test { Observation observation = new Observation(); observation.getIdentifierFirstRep().setSystem("foo").setValue("ID" + i); observation.getCode().addCoding().setCode(code).setSystem("SNOMED-CT"); - observation.setStatus(Observation.ObservationStatus.FINAL); + observation.setStatus(Enumerations.ObservationStatus.FINAL); myObservationDao.create(observation); } @@ -669,7 +669,7 @@ public class RestHookTestR5Test extends BaseSubscriptionsR5Test { CodeableConcept codeableConcept = new CodeableConcept() .addCoding(new Coding().setCode(code).setSystem("SNOMED-CT")); observation.setCode(codeableConcept); - observation.setStatus(Observation.ObservationStatus.FINAL); + observation.setStatus(Enumerations.ObservationStatus.FINAL); Patient patient = new Patient(); patient.addIdentifier().setSystem("foo").setValue("bar2"); @@ -848,7 +848,7 @@ public class RestHookTestR5Test extends BaseSubscriptionsR5Test { @Test(expected = UnprocessableEntityException.class) public void testInvalidProvenanceParam() { String payload = "application/fhir+json"; - String criteriabad = "Provenance?activity=http://hl7.org/fhir/v3/DocumentCompletion%7CAU"; + String criteriabad = "Provenance?foo=http://hl7.org/fhir/v3/DocumentCompletion%7CAU"; Subscription subscription = newSubscription(criteriabad, payload); ourClient.create().resource(subscription).execute(); } diff --git a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/validator/AttachmentUtilTest.java b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/validator/AttachmentUtilTest.java index 944ca3395f0..49ce3040de6 100644 --- a/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/validator/AttachmentUtilTest.java +++ b/hapi-fhir-jpaserver-base/src/test/java/ca/uhn/fhir/validator/AttachmentUtilTest.java @@ -49,7 +49,7 @@ public class AttachmentUtilTest { AttachmentUtil.setSize(ctx, attachment, 123); org.hl7.fhir.r5.model.Communication communication = new org.hl7.fhir.r5.model.Communication(); - communication.addPayload().setContent((org.hl7.fhir.r5.model.Type) attachment); + communication.addPayload().setContent((org.hl7.fhir.r5.model.DataType) attachment); String encoded = ctx.newJsonParser().encodeResourceToString(communication); assertEquals("{\"resourceType\":\"Communication\",\"payload\":[{\"contentAttachment\":{\"contentType\":\"text/plain\",\"data\":\"AAECAw==\",\"url\":\"http://foo\",\"size\":123}}]}", encoded); } diff --git a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/any/AnyListResource.java b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/any/AnyListResource.java index bee400a36da..4ac73881959 100644 --- a/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/any/AnyListResource.java +++ b/hapi-fhir-jpaserver-model/src/main/java/ca/uhn/fhir/jpa/model/any/AnyListResource.java @@ -298,7 +298,7 @@ public class AnyListResource { private boolean removeItemR5(String theReferenceId) { boolean removed = false; - for (org.hl7.fhir.r5.model.ListResource.ListEntryComponent entry : getR5().getEntry()) { + for (org.hl7.fhir.r5.model.ListResource.ListResourceEntryComponent entry : getR5().getEntry()) { if (theReferenceId.equals(entry.getItem().getReference()) && !entry.getDeleted()) { entry.setDeleted(true); removed = true; diff --git a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorMegaTest.java b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorMegaTest.java index da6dacf4bf4..3fc6475bcd0 100644 --- a/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorMegaTest.java +++ b/hapi-fhir-jpaserver-searchparam/src/test/java/ca/uhn/fhir/jpa/searchparam/extractor/SearchParamExtractorMegaTest.java @@ -163,6 +163,7 @@ public class SearchParamExtractorMegaTest { case "instant": leaf.setValueAsString("2019-10-10T11:11:11Z"); break; + case "integer64": case "integer": case "decimal": leaf.setValueAsString("1"); diff --git a/hapi-fhir-structures-dstu2.1/src/test/java/ca/uhn/fhir/parser/JsonParserDstu2_1Test.java b/hapi-fhir-structures-dstu2.1/src/test/java/ca/uhn/fhir/parser/JsonParserDstu2_1Test.java index e31cf6be5bb..315736213f7 100644 --- a/hapi-fhir-structures-dstu2.1/src/test/java/ca/uhn/fhir/parser/JsonParserDstu2_1Test.java +++ b/hapi-fhir-structures-dstu2.1/src/test/java/ca/uhn/fhir/parser/JsonParserDstu2_1Test.java @@ -1693,25 +1693,6 @@ public class JsonParserDstu2_1Test { } - /** - * See #484 - */ - @Test - public void testParseNarrativeWithEmptyDiv() { - String input = "{\"resourceType\":\"Basic\",\"id\":\"1\",\"text\":{\"status\":\"generated\",\"div\":\"
\"}}"; - Basic basic = ourCtx.newJsonParser().parseResource(Basic.class, input); - assertEquals(null, basic.getText().getDivAsString()); - - input = "{\"resourceType\":\"Basic\",\"id\":\"1\",\"text\":{\"status\":\"generated\",\"div\":\"
\"}}"; - basic = ourCtx.newJsonParser().parseResource(Basic.class, input); - assertEquals(null, basic.getText().getDivAsString()); - - input = "{\"resourceType\":\"Basic\",\"id\":\"1\",\"text\":{\"status\":\"generated\",\"div\":\"
\"}}"; - basic = ourCtx.newJsonParser().parseResource(Basic.class, input); - assertEquals("
", basic.getText().getDivAsString()); - - } - /** * See #163 */ diff --git a/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/model/XhtmlNodeTest.java b/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/model/XhtmlNodeTest.java index b87263ed32b..673cac8a740 100644 --- a/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/model/XhtmlNodeTest.java +++ b/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/model/XhtmlNodeTest.java @@ -30,7 +30,17 @@ public class XhtmlNodeTest { assertEquals("
It’s January again
", new XhtmlNode().setValue(dt.getValue()).getValueAsString()); } - + /** + * See #1658 + */ + @Test + public void testLangAttributePreserved() { + XhtmlNode dt = new XhtmlNode(); + dt.setValueAsString("
help i'm a bug
"); + assertEquals("
help i'm a bug
", dt.getValueAsString()); + assertEquals("
help i'm a bug
", new XhtmlNode().setValue(dt.getValue()).getValueAsString()); + } + /** * See #443 */ diff --git a/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/parser/JsonParserDstu3Test.java b/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/parser/JsonParserDstu3Test.java index f6c411a272a..3211b621a89 100644 --- a/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/parser/JsonParserDstu3Test.java +++ b/hapi-fhir-structures-dstu3/src/test/java/ca/uhn/fhir/parser/JsonParserDstu3Test.java @@ -2187,11 +2187,11 @@ public class JsonParserDstu3Test { public void testParseNarrativeWithEmptyDiv() { String input = "{\"resourceType\":\"Basic\",\"id\":\"1\",\"text\":{\"status\":\"generated\",\"div\":\"
\"}}"; Basic basic = ourCtx.newJsonParser().parseResource(Basic.class, input); - assertEquals(null, basic.getText().getDivAsString()); + assertEquals("
", basic.getText().getDivAsString()); input = "{\"resourceType\":\"Basic\",\"id\":\"1\",\"text\":{\"status\":\"generated\",\"div\":\"
\"}}"; basic = ourCtx.newJsonParser().parseResource(Basic.class, input); - assertEquals(null, basic.getText().getDivAsString()); + assertEquals("
", basic.getText().getDivAsString()); input = "{\"resourceType\":\"Basic\",\"id\":\"1\",\"text\":{\"status\":\"generated\",\"div\":\"
\"}}"; basic = ourCtx.newJsonParser().parseResource(Basic.class, input); @@ -2199,6 +2199,18 @@ public class JsonParserDstu3Test { } + /** + * See #1658 + */ + @Test + public void testParseNarrativeWithLang() { + String input = "{\"resourceType\":\"Basic\",\"id\":\"1\",\"text\":{\"status\":\"generated\",\"div\":\"
foo
\"}}"; + Basic basic = ourCtx.newJsonParser().parseResource(Basic.class, input); + assertEquals("
foo
", basic.getText().getDivAsString()); + + + } + /** * See #163 */ diff --git a/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/parser/XmlParserR4Test.java b/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/parser/XmlParserR4Test.java index 8ddb449ca18..c16ac5c8950 100644 --- a/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/parser/XmlParserR4Test.java +++ b/hapi-fhir-structures-r4/src/test/java/ca/uhn/fhir/parser/XmlParserR4Test.java @@ -1,21 +1,26 @@ package ca.uhn.fhir.parser; +import static org.hamcrest.Matchers.containsString; import static org.hamcrest.Matchers.stringContainsInOrder; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotEquals; import static org.junit.Assert.assertThat; +import ca.uhn.fhir.test.BaseTest; import org.hl7.fhir.r4.model.Bundle; import org.hl7.fhir.r4.model.Composition; import org.hl7.fhir.r4.model.MessageHeader; import org.hl7.fhir.r4.model.Narrative; +import org.hl7.fhir.r4.model.Observation; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import ca.uhn.fhir.context.FhirContext; -public class XmlParserR4Test { +import java.io.IOException; + +public class XmlParserR4Test extends BaseTest { private static final Logger ourLog = LoggerFactory.getLogger(XmlParserR4Test.class); private static FhirContext ourCtx = FhirContext.forR4(); @@ -74,5 +79,17 @@ public class XmlParserR4Test { } + /** + * See #1658 + */ + @Test + public void testNarrativeLangAttributePreserved() throws IOException { + Observation obs = loadResource(ourCtx, Observation.class, "/resource-with-lang-in-narrative.xml"); + String encoded = ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(obs); + assertThat(encoded, containsString("xmlns=\"http://www.w3.org/1999/xhtml\"")); + assertThat(encoded, containsString("lang=\"en-US\"")); + ourLog.info(encoded); + } + } diff --git a/hapi-fhir-structures-r4/src/test/resources/resource-with-lang-in-narrative.xml b/hapi-fhir-structures-r4/src/test/resources/resource-with-lang-in-narrative.xml new file mode 100644 index 00000000000..f3f5664f51e --- /dev/null +++ b/hapi-fhir-structures-r4/src/test/resources/resource-with-lang-in-narrative.xml @@ -0,0 +1,49 @@ + + + + +

Generated Narrative with Details

id: f001

identifier: 6323 (OFFICIAL)

status: final

code: Glucose [Moles/volume] in Blood (Details : {LOINC code '15074-8' = 'Glucose [Moles/volume] in Blood', given as 'Glucose [Moles/volume] in Blood'})

subject: P. van de Heuvel

effective: 02/04/2013 9:30:10 AM --> (ongoing)

issued: 03/04/2013 3:30:10 PM

performer: A. Langeveld

value: 6.3 mmol/l (Details: UCUM code mmol/L = 'mmol/L')

interpretation: High (Details : {http://terminology.hl7.org/CodeSystem/v3-ObservationInterpretation code 'H' = 'High', given as 'High'})

ReferenceRanges

-LowHigh
*3.1 mmol/l (Details: UCUM code mmol/L = 'mmol/L')6.2 mmol/l (Details: UCUM code mmol/L = 'mmol/L')
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/DefaultProfileValidationSupport.java b/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/DefaultProfileValidationSupport.java index ac63ae0f6a0..10848c810f0 100644 --- a/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/DefaultProfileValidationSupport.java +++ b/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/DefaultProfileValidationSupport.java @@ -314,7 +314,7 @@ public class DefaultProfileValidationSupport implements IValidationSupport { .filter(t -> (Constants.codeSystemNotNeeded(theCodeSystem) || t.getSystem().equals(theCodeSystem)) && t.getCode().equals(theCode)) .findFirst(); if (haveMatch.isPresent()) { - return new CodeValidationResult(new ConceptDefinitionComponent(new CodeType(theCode))); + return new CodeValidationResult(new ConceptDefinitionComponent(theCode)); } } } catch (Exception e) { diff --git a/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/HapiWorkerContext.java b/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/HapiWorkerContext.java index 0b4f58300f4..c48a81f8f5e 100644 --- a/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/HapiWorkerContext.java +++ b/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/ctx/HapiWorkerContext.java @@ -24,11 +24,15 @@ import org.hl7.fhir.r5.terminologies.ValueSetExpander; import org.hl7.fhir.r5.terminologies.ValueSetExpanderFactory; import org.hl7.fhir.r5.terminologies.ValueSetExpanderSimple; import org.hl7.fhir.r5.utils.IResourceValidator; -import org.hl7.fhir.utilities.TerminologyServiceOptions; import org.hl7.fhir.utilities.TranslationServices; import org.hl7.fhir.utilities.validation.ValidationMessage.IssueSeverity; +import org.hl7.fhir.utilities.validation.ValidationOptions; -import java.util.*; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.Map; +import java.util.Set; import java.util.concurrent.TimeUnit; import static org.apache.commons.lang3.StringUtils.isNotBlank; @@ -144,15 +148,9 @@ public final class HapiWorkerContext implements IWorkerContext, ValueSetExpander } } - @Override - public Set typeTails() { - return new HashSet<>(Arrays.asList("Integer", "UnsignedInt", "PositiveInt", "Decimal", "DateTime", "Date", "Time", "Instant", "String", "Uri", "Oid", "Uuid", "Id", "Boolean", "Code", - "Markdown", "Base64Binary", "Coding", "CodeableConcept", "Attachment", "Identifier", "Quantity", "SampledData", "Range", "Period", "Ratio", "HumanName", "Address", "ContactPoint", - "Timing", "Reference", "Annotation", "Signature", "Meta")); - } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, CodeableConcept theCode, ValueSet theVs) { + public ValidationResult validateCode(ValidationOptions theOptions, CodeableConcept theCode, ValueSet theVs) { for (Coding next : theCode.getCoding()) { ValidationResult retVal = validateCode(theOptions, next, theVs); if (retVal.isOk()) { @@ -164,7 +162,7 @@ public final class HapiWorkerContext implements IWorkerContext, ValueSetExpander } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, Coding theCode, ValueSet theVs) { + public ValidationResult validateCode(ValidationOptions theOptions, Coding theCode, ValueSet theVs) { String system = theCode.getSystem(); String code = theCode.getCode(); String display = theCode.getDisplay(); @@ -172,7 +170,7 @@ public final class HapiWorkerContext implements IWorkerContext, ValueSetExpander } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String theSystem, String theCode, String theDisplay) { + public ValidationResult validateCode(ValidationOptions theOptions, String theSystem, String theCode, String theDisplay) { IContextValidationSupport.CodeValidationResult result = myValidationSupport.validateCode(myCtx, theSystem, theCode, theDisplay, null); if (result == null) { return null; @@ -181,12 +179,7 @@ public final class HapiWorkerContext implements IWorkerContext, ValueSetExpander } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String theSystem, String theCode, String theDisplay, ConceptSetComponent theVsi) { - throw new UnsupportedOperationException(); - } - - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String theSystem, String theCode, String theDisplay, ValueSet theVs) { + public ValidationResult validateCode(ValidationOptions theOptions, String theSystem, String theCode, String theDisplay, ValueSet theVs) { /* * The following valueset is a special case, since the BCP codesystem is very difficult to expand @@ -227,13 +220,13 @@ public final class HapiWorkerContext implements IWorkerContext, ValueSetExpander @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String code, ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String code, ValueSet vs) { return validateCode(theOptions, null, code, null, vs); } @Override @CoverageIgnore - public List allConformanceResources() { + public List allConformanceResources() { throw new UnsupportedOperationException(); } @@ -242,6 +235,11 @@ public final class HapiWorkerContext implements IWorkerContext, ValueSetExpander } + @Override + public void generateSnapshot(StructureDefinition mr, boolean ifLogical) { + + } + @Override public Parameters getExpansionParameters() { return myExpansionProfile; @@ -400,4 +398,9 @@ public final class HapiWorkerContext implements IWorkerContext, ValueSetExpander throw new UnsupportedOperationException(); } + @Override + public Map getBinaries() { + return null; + } + } diff --git a/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/rest/server/ServerCapabilityStatementProvider.java b/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/rest/server/ServerCapabilityStatementProvider.java index 4cdbb9268e4..d0c9a708924 100644 --- a/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/rest/server/ServerCapabilityStatementProvider.java +++ b/hapi-fhir-structures-r5/src/main/java/org/hl7/fhir/r5/hapi/rest/server/ServerCapabilityStatementProvider.java @@ -1,5 +1,6 @@ package org.hl7.fhir.r5.hapi.rest.server; +import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.context.FhirVersionEnum; import ca.uhn.fhir.context.RuntimeResourceDefinition; import ca.uhn.fhir.context.RuntimeSearchParam; @@ -14,31 +15,51 @@ import ca.uhn.fhir.rest.server.IServerConformanceProvider; import ca.uhn.fhir.rest.server.RestfulServer; import ca.uhn.fhir.rest.server.RestfulServerConfiguration; import ca.uhn.fhir.rest.server.exceptions.ResourceNotFoundException; -import ca.uhn.fhir.rest.server.method.*; -import ca.uhn.fhir.rest.server.method.SearchParameter; +import ca.uhn.fhir.rest.server.method.BaseMethodBinding; +import ca.uhn.fhir.rest.server.method.IParameter; +import ca.uhn.fhir.rest.server.method.OperationMethodBinding; import ca.uhn.fhir.rest.server.method.OperationMethodBinding.ReturnType; +import ca.uhn.fhir.rest.server.method.OperationParameter; +import ca.uhn.fhir.rest.server.method.SearchMethodBinding; +import ca.uhn.fhir.rest.server.method.SearchParameter; import ca.uhn.fhir.rest.server.util.BaseServerCapabilityStatementProvider; import org.apache.commons.lang3.StringUtils; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.instance.model.api.IPrimitiveType; -import org.hl7.fhir.r5.model.*; -import org.hl7.fhir.r5.model.CapabilityStatement.*; +import org.hl7.fhir.r5.model.CapabilityStatement; +import org.hl7.fhir.r5.model.CapabilityStatement.CapabilityStatementRestComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.CapabilityStatementRestResourceComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.ConditionalDeleteStatus; +import org.hl7.fhir.r5.model.CapabilityStatement.ResourceInteractionComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.SystemRestfulInteraction; +import org.hl7.fhir.r5.model.CapabilityStatement.TypeRestfulInteraction; +import org.hl7.fhir.r5.model.DateTimeType; +import org.hl7.fhir.r5.model.Enumerations; import org.hl7.fhir.r5.model.Enumerations.PublicationStatus; +import org.hl7.fhir.r5.model.IdType; +import org.hl7.fhir.r5.model.OperationDefinition; import org.hl7.fhir.r5.model.OperationDefinition.OperationDefinitionParameterComponent; import org.hl7.fhir.r5.model.OperationDefinition.OperationKind; -import org.hl7.fhir.r5.model.OperationDefinition.OperationParameterUse; +import org.hl7.fhir.r5.model.ResourceType; import javax.servlet.ServletContext; import javax.servlet.http.HttpServletRequest; -import java.util.*; +import java.util.ArrayList; +import java.util.Collections; +import java.util.Comparator; +import java.util.Date; +import java.util.HashSet; +import java.util.List; +import java.util.Map; import java.util.Map.Entry; +import java.util.Set; +import java.util.TreeSet; import static org.apache.commons.lang3.StringUtils.isBlank; import static org.apache.commons.lang3.StringUtils.isNotBlank; -import ca.uhn.fhir.context.FhirContext; - /* * #%L * HAPI FHIR Structures - DSTU2 (FHIR v1.0.0) @@ -160,7 +181,7 @@ public class ServerCapabilityStatementProvider extends BaseServerCapabilityState .setUrl(serverBase) .setDescription(configuration.getImplementationDescription()); - retVal.setKind(CapabilityStatementKind.INSTANCE); + retVal.setKind(Enumerations.CapabilityStatementKind.INSTANCE); retVal.getSoftware().setName(configuration.getServerName()); retVal.getSoftware().setVersion(configuration.getServerVersion()); retVal.addFormat(Constants.CT_FHIR_XML_NEW); @@ -168,7 +189,7 @@ public class ServerCapabilityStatementProvider extends BaseServerCapabilityState retVal.setStatus(PublicationStatus.ACTIVE); CapabilityStatementRestComponent rest = retVal.addRest(); - rest.setMode(RestfulCapabilityMode.SERVER); + rest.setMode(Enumerations.RestfulCapabilityMode.SERVER); Set systemOps = new HashSet<>(); Set operationNames = new HashSet<>(); @@ -442,8 +463,8 @@ public class ServerCapabilityStatementProvider extends BaseServerCapabilityState continue; } OperationDefinitionParameterComponent param = op.addParameter(); - param.setUse(OperationParameterUse.IN); - param.setType("string"); + param.setUse(Enumerations.OperationParameterUse.IN); + param.setType(Enumerations.FHIRAllTypes.STRING); param.getSearchTypeElement().setValueAsString(nextParam.getParamType().getCode()); param.setMin(nextParam.isRequired() ? 1 : 0); param.setMax("1"); @@ -511,9 +532,9 @@ public class ServerCapabilityStatementProvider extends BaseServerCapabilityState if (!inParams.add(nextParam.getName())) { continue; } - param.setUse(OperationParameterUse.IN); + param.setUse(Enumerations.OperationParameterUse.IN); if (nextParam.getParamType() != null) { - param.setType(nextParam.getParamType()); + param.setType(Enumerations.FHIRAllTypes.fromCode(nextParam.getParamType())); } if (nextParam.getSearchParamType() != null) { param.getSearchTypeElement().setValueAsString(nextParam.getSearchParamType()); @@ -529,9 +550,9 @@ public class ServerCapabilityStatementProvider extends BaseServerCapabilityState continue; } OperationDefinitionParameterComponent param = op.addParameter(); - param.setUse(OperationParameterUse.OUT); + param.setUse(Enumerations.OperationParameterUse.OUT); if (nextParam.getType() != null) { - param.setType(nextParam.getType()); + param.setType(Enumerations.FHIRAllTypes.fromCode(nextParam.getType())); } param.setMin(nextParam.getMin()); param.setMax(nextParam.getMax() == -1 ? "*" : Integer.toString(nextParam.getMax())); diff --git a/hapi-fhir-structures-r5/src/main/resources/org/hl7/fhir/r5/model/fhirversion.properties b/hapi-fhir-structures-r5/src/main/resources/org/hl7/fhir/r5/model/fhirversion.properties index 22b831d13ce..2248296c8ae 100644 --- a/hapi-fhir-structures-r5/src/main/resources/org/hl7/fhir/r5/model/fhirversion.properties +++ b/hapi-fhir-structures-r5/src/main/resources/org/hl7/fhir/r5/model/fhirversion.properties @@ -1,5 +1,5 @@ # This file contains version definitions -# Generated: 2019-10-26T18:45:40.876-04:00 +# Generated: 2020-01-12T11:10:06.793+08:00 resource.Account=org.hl7.fhir.r5.model.Account resource.ActivityDefinition=org.hl7.fhir.r5.model.ActivityDefinition @@ -148,14 +148,16 @@ datatype.Address=org.hl7.fhir.r5.model.Address datatype.Age=org.hl7.fhir.r5.model.Age datatype.Annotation=org.hl7.fhir.r5.model.Annotation datatype.Attachment=org.hl7.fhir.r5.model.Attachment -datatype.BackboneElement=org.hl7.fhir.r5.model.BackboneType +datatype.BackboneType=org.hl7.fhir.r5.model.BackboneType datatype.CodeableConcept=org.hl7.fhir.r5.model.CodeableConcept +datatype.CodeableReference=org.hl7.fhir.r5.model.CodeableReference datatype.Coding=org.hl7.fhir.r5.model.Coding datatype.ContactDetail=org.hl7.fhir.r5.model.ContactDetail datatype.ContactPoint=org.hl7.fhir.r5.model.ContactPoint datatype.Contributor=org.hl7.fhir.r5.model.Contributor datatype.Count=org.hl7.fhir.r5.model.Count datatype.DataRequirement=org.hl7.fhir.r5.model.DataRequirement +datatype.DataType=org.hl7.fhir.r5.model.DataType datatype.Distance=org.hl7.fhir.r5.model.Distance datatype.Dosage=org.hl7.fhir.r5.model.Dosage datatype.Duration=org.hl7.fhir.r5.model.Duration @@ -199,6 +201,7 @@ datatype.decimal=org.hl7.fhir.r5.model.DecimalType datatype.id=org.hl7.fhir.r5.model.IdType datatype.instant=org.hl7.fhir.r5.model.InstantType datatype.integer=org.hl7.fhir.r5.model.IntegerType +datatype.integer64=org.hl7.fhir.r5.model.Integer64Type datatype.markdown=org.hl7.fhir.r5.model.MarkdownType datatype.oid=org.hl7.fhir.r5.model.OidType datatype.positiveInt=org.hl7.fhir.r5.model.PositiveIntType @@ -207,4 +210,5 @@ datatype.time=org.hl7.fhir.r5.model.TimeType datatype.unsignedInt=org.hl7.fhir.r5.model.UnsignedIntType datatype.uri=org.hl7.fhir.r5.model.UriType datatype.url=org.hl7.fhir.r5.model.UrlType +datatype.uuid=org.hl7.fhir.r5.model.UuidType datatype.xhtml=org.hl7.fhir.utilities.xhtml.XhtmlNode diff --git a/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/ServerCapabilityStatementProviderR5Test.java b/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/ServerCapabilityStatementProviderR5Test.java index 2f814a229a8..9a384e576c2 100644 --- a/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/ServerCapabilityStatementProviderR5Test.java +++ b/hapi-fhir-structures-r5/src/test/java/ca/uhn/fhir/rest/server/ServerCapabilityStatementProviderR5Test.java @@ -3,13 +3,19 @@ package ca.uhn.fhir.rest.server; import ca.uhn.fhir.context.FhirContext; import ca.uhn.fhir.model.api.Include; import ca.uhn.fhir.model.api.annotation.Description; +import ca.uhn.fhir.model.api.annotation.ResourceDef; import ca.uhn.fhir.model.primitive.InstantDt; import ca.uhn.fhir.rest.annotation.*; import ca.uhn.fhir.rest.api.MethodOutcome; import ca.uhn.fhir.rest.api.RestSearchParameterTypeEnum; import ca.uhn.fhir.rest.api.server.IBundleProvider; import ca.uhn.fhir.rest.api.server.RequestDetails; -import ca.uhn.fhir.rest.param.*; +import ca.uhn.fhir.rest.param.DateRangeParam; +import ca.uhn.fhir.rest.param.QuantityParam; +import ca.uhn.fhir.rest.param.ReferenceAndListParam; +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.method.BaseMethodBinding; import ca.uhn.fhir.rest.server.method.IParameter; import ca.uhn.fhir.rest.server.method.SearchMethodBinding; @@ -21,26 +27,41 @@ import com.google.common.collect.Lists; import org.hl7.fhir.instance.model.api.IBaseResource; import org.hl7.fhir.r5.hapi.rest.server.ServerCapabilityStatementProvider; import org.hl7.fhir.r5.model.*; -import org.hl7.fhir.r5.model.CapabilityStatement.*; +import org.hl7.fhir.r5.model.CapabilityStatement.CapabilityStatementRestComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.CapabilityStatementRestResourceComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.CapabilityStatementRestResourceOperationComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.CapabilityStatementRestResourceSearchParamComponent; +import org.hl7.fhir.r5.model.CapabilityStatement.ConditionalDeleteStatus; +import org.hl7.fhir.r5.model.CapabilityStatement.SystemRestfulInteraction; +import org.hl7.fhir.r5.model.CapabilityStatement.TypeRestfulInteraction; import org.hl7.fhir.r5.model.Enumerations.PublicationStatus; import org.hl7.fhir.r5.model.OperationDefinition.OperationDefinitionParameterComponent; import org.hl7.fhir.r5.model.OperationDefinition.OperationKind; -import org.hl7.fhir.r5.model.OperationDefinition.OperationParameterUse; import org.junit.AfterClass; import org.junit.Ignore; import org.junit.Test; import javax.servlet.ServletConfig; import javax.servlet.http.HttpServletRequest; -import java.util.*; +import java.util.ArrayList; +import java.util.Collection; +import java.util.HashSet; +import java.util.List; +import java.util.Set; -import static org.hamcrest.Matchers.*; -import static org.junit.Assert.*; +import static org.hamcrest.Matchers.containsInAnyOrder; +import static org.hamcrest.Matchers.containsString; +import static org.hamcrest.Matchers.empty; +import static org.hamcrest.Matchers.is; +import static org.hamcrest.Matchers.not; +import static org.hamcrest.Matchers.nullValue; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNull; +import static org.junit.Assert.assertThat; +import static org.junit.Assert.assertTrue; import static org.mockito.Mockito.mock; import static org.mockito.Mockito.when; -import ca.uhn.fhir.model.api.annotation.ResourceDef; - public class ServerCapabilityStatementProviderR5Test { private static FhirContext ourCtx; @@ -265,9 +286,9 @@ public class ServerCapabilityStatementProviderR5Test { assertThat(types, containsInAnyOrder("Patient")); assertEquals(2, opDef.getParameter().size()); assertEquals("someOpParam1", opDef.getParameter().get(0).getName()); - assertEquals("date", opDef.getParameter().get(0).getType()); + assertEquals("date", opDef.getParameter().get(0).getType().toCode()); assertEquals("someOpParam2", opDef.getParameter().get(1).getName()); - assertEquals("Patient", opDef.getParameter().get(1).getType()); + assertEquals("Patient", opDef.getParameter().get(1).getType().toCode()); } { OperationDefinition opDef = sc.readOperationDefinition(new IdType("OperationDefinition/Encounter-i-someOp"), createRequestDetails(rs)); @@ -280,9 +301,9 @@ public class ServerCapabilityStatementProviderR5Test { assertThat(types, containsInAnyOrder("Encounter")); assertEquals(2, opDef.getParameter().size()); assertEquals("someOpParam1", opDef.getParameter().get(0).getName()); - assertEquals("date", opDef.getParameter().get(0).getType()); + assertEquals("date", opDef.getParameter().get(0).getType().toCode()); assertEquals("someOpParam2", opDef.getParameter().get(1).getName()); - assertEquals("Encounter", opDef.getParameter().get(1).getType()); + assertEquals("Encounter", opDef.getParameter().get(1).getType().toCode()); } { OperationDefinition opDef = sc.readOperationDefinition(new IdType("OperationDefinition/Patient-i-validate"), createRequestDetails(rs)); @@ -295,7 +316,7 @@ public class ServerCapabilityStatementProviderR5Test { assertThat(types, containsInAnyOrder("Patient")); assertEquals(1, opDef.getParameter().size()); assertEquals("resource", opDef.getParameter().get(0).getName()); - assertEquals("Patient", opDef.getParameter().get(0).getType()); + assertEquals("Patient", opDef.getParameter().get(0).getType().toCode()); } } @@ -672,11 +693,11 @@ public class ServerCapabilityStatementProviderR5Test { assertThat(parameters.size(), is(1)); OperationDefinitionParameterComponent param = parameters.get(0); assertThat(param.getName(), is(NamedQueryPlainProvider.SP_QUANTITY)); - assertThat(param.getType(), is("string")); + assertThat(param.getType().toCode(), is("string")); assertThat(param.getSearchTypeElement().asStringValue(), is(RestSearchParameterTypeEnum.QUANTITY.getCode())); assertThat(param.getMin(), is(1)); assertThat(param.getMax(), is("1")); - assertThat(param.getUse(), is(OperationParameterUse.IN)); + assertThat(param.getUse(), is(Enumerations.OperationParameterUse.IN)); } @Test @@ -710,11 +731,11 @@ public class ServerCapabilityStatementProviderR5Test { assertThat(parameters.size(), is(1)); OperationDefinitionParameterComponent param = parameters.get(0); assertThat(param.getName(), is(NamedQueryResourceProvider.SP_PARAM)); - assertThat(param.getType(), is("string")); + assertThat(param.getType().toCode(), is("string")); assertThat(param.getSearchTypeElement().asStringValue(), is(RestSearchParameterTypeEnum.STRING.getCode())); assertThat(param.getMin(), is(0)); assertThat(param.getMax(), is("1")); - assertThat(param.getUse(), is(OperationParameterUse.IN)); + assertThat(param.getUse(), is(Enumerations.OperationParameterUse.IN)); CapabilityStatementRestResourceComponent patientResource = restComponent.getResource().stream() .filter(r -> patientResourceName.equals(r.getType())) diff --git a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/extension/extension-definitions.xml b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/extension/extension-definitions.xml index ae46959d0cd..c9b3ca4ff61 100644 --- a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/extension/extension-definitions.xml +++ b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/extension/extension-definitions.xml @@ -1,121276 +1,121256 @@ - - - - - - - - - - - - - - - - - - - - - - - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The clinical course of the disease (how the disease behaves over time), such as acute versus chronic."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The clinical course of the disease"/> - <definition value="The clinical course of the disease (how the disease behaves over time), such as acute versus chronic."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-diseaseCourse"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionCourse"/> - </extension> - <strength value="example"/> - <description value="Codes that describe the clinical course of the disease."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-course"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The clinical course of the disease"/> - <definition value="The clinical course of the disease (how the disease behaves over time), such as acute versus chronic."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-diseaseCourse"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionCourse"/> - </extension> - <strength value="example"/> - <description value="Codes that describe the clinical course of the disease."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-course"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-citizenship"/> - <resource> - <StructureDefinition> - <id value="patient-citizenship"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-citizenship"/> - <version value="4.1.0"/> - <name value="citizenship"/> - <title value="citizenship"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The patient's legal status as citizen of a country."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Nation(s) where the patient claims citizenship"/> - <definition value="The patient's legal status as citizen of a country."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Nation code of citizenship"/> - <definition value="Nation code representing the citizenship of patient."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:period"> - <path value="Extension.extension"/> - <sliceName value="period"/> - <short value="Time period of citizenship"/> - <definition value="Period when citizenship was effective."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:period.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:period.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:period.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="period"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:period.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Period"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-citizenship"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Nation(s) where the patient claims citizenship"/> - <definition value="The patient's legal status as citizen of a country."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Nation code of citizenship"/> - <definition value="Nation code representing the citizenship of patient."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:period"> - <path value="Extension.extension"/> - <sliceName value="period"/> - <short value="Time period of citizenship"/> - <definition value="Period when citizenship was effective."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:period.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:period.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="period"/> - </element> - <element id="Extension.extension:period.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Period"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-citizenship"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-management"/> - <resource> - <StructureDefinition> - <id value="openEHR-management"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-management"/> - <version value="4.1.0"/> - <name value="management"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Text description about the clinical management provided."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Clinical Management Description"/> - <definition value="Text description about the clinical management provided."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-management"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Clinical Management Description"/> - <definition value="Text description about the clinical management provided."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-management"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/11179-objectClass"/> - <resource> - <StructureDefinition> - <id value="11179-objectClass"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/11179-objectClass"/> - <version value="4.1.0"/> - <name value="objectClass"/> - <title value="Object Class"/> - <status value="draft"/> - <date value="2014-04-21"/> - <publisher value="Health Level Seven International (Orders and Observations)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="A concept that represents a set of ideas, abstractions, or things in the real world that can be identified with explicit boundaries and meaning and whose properties and behavior follow the same rules. It may be either a single concept or a group of associated concepts, abstractions, or things."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <uri value="http://metadata-standards.org/11179/"/> - <name value="ISO 11179"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.mapping"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Object Class"/> - <definition value="A concept that represents a set of ideas, abstractions, or things in the real world that can be identified with explicit boundaries and meaning and whose properties and behavior follow the same rules. It may be either a single concept or a group of associated concepts, abstractions, or things."/> - <comment value="ObjectClass and Property are treated as a data model that can be mapped to, like any other. This extension merely captures the ObjectClass element as a discrete code. The information conveyed here should also be conveyed in human-readable form in the mapping.map element."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.meaning.object_class"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-objectClass"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="11179ObjectClass"/> - </extension> - <strength value="example"/> - <description value="A concept that represents a set of ideas, abstractions, or things in the real world that can be identified with explicit boundaries and meaning and whose properties and behavior follow the same rules; e.g. Person, Prescription, Encounter, etc."/> - <valueSet value="http://hl7.org/fhir/ValueSet/dataelement-sdcobjectclass"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Object Class"/> - <definition value="A concept that represents a set of ideas, abstractions, or things in the real world that can be identified with explicit boundaries and meaning and whose properties and behavior follow the same rules. It may be either a single concept or a group of associated concepts, abstractions, or things."/> - <comment value="ObjectClass and Property are treated as a data model that can be mapped to, like any other. This extension merely captures the ObjectClass element as a discrete code. The information conveyed here should also be conveyed in human-readable form in the mapping.map element."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.meaning.object_class"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-objectClass"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="11179ObjectClass"/> - </extension> - <strength value="example"/> - <description value="A concept that represents a set of ideas, abstractions, or things in the real world that can be identified with explicit boundaries and meaning and whose properties and behavior follow the same rules; e.g. Person, Prescription, Encounter, etc."/> - <valueSet value="http://hl7.org/fhir/ValueSet/dataelement-sdcobjectclass"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/location-distance"/> - <resource> - <StructureDefinition> - <id value="location-distance"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/location-distance"/> - <version value="4.1.0"/> - <name value="location-distance"/> - <title value="Distance"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A calculated distance between the resource and a provided location."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.entry.search"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The distance this resource is from a provided location (geocode point)"/> - <definition value="A calculated distance between the resource and a provided location."/> - <comment value="This may be used with the Location.near/near-distance search parameter."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/location-distance"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Distance"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The distance this resource is from a provided location (geocode point)"/> - <definition value="A calculated distance between the resource and a provided location."/> - <comment value="This may be used with the Location.near/near-distance search parameter."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/location-distance"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Distance"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder"/> - <resource> - <StructureDefinition> - <id value="valueset-conceptOrder"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder"/> - <version value="4.1.0"/> - <name value="conceptOrder"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Identifies the relative order in which concepts within the value set should be presented to a user."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include.concept"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet.expansion.contains"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Appearance order for user selection"/> - <definition value="Identifies the relative order in which concepts within the value set should be presented to a user."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Appearance order for user selection"/> - <definition value="Identifies the relative order in which concepts within the value set should be presented to a user."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-conceptOrder"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-displayCategory"/> - <resource> - <StructureDefinition> - <id value="questionnaire-displayCategory"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-displayCategory"/> - <version value="4.1.0"/> - <name value="displayCategory"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Describes the intended purpose of the rendered text. For example - instructions, guidance on access control, maintenance information, etc."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type!='display'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Purpose of rendered text"/> - <definition value="Describes the intended purpose of the rendered text. For example - instructions, guidance on access control, maintenance information, etc."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-displayCategory"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QuestionnaireDisplayCategory"/> - </extension> - <strength value="extensible"/> - <description value="Identifies the purpose for a "display" item."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaire-display-category"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Purpose of rendered text"/> - <definition value="Describes the intended purpose of the rendered text. For example - instructions, guidance on access control, maintenance information, etc."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-displayCategory"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QuestionnaireDisplayCategory"/> - </extension> - <strength value="extensible"/> - <description value="Identifies the purpose for a "display" item."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaire-display-category"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-sibling"/> - <resource> - <StructureDefinition> - <id value="family-member-history-genetics-sibling"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-sibling"/> - <version value="4.1.0"/> - <name value="sibling"/> - <status value="draft"/> - <date value="2019-05-29"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Identifies a sibling of the relative."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="natural brother(s) & natural sister(s) - genetic & other"/> - <definition value="Identifies a sibling of the relative."/> - <comment value="Some cases may have complex inner-pedigree-tree relationship. For instance, double cousin relationship need two extra link with In pedigree tree itself. This can't be revealed by relationship to subject."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="sibling | brother | sister | etc."/> - <definition value="Distinguishes between different types of sibling relationships with varying granularity to support capturing the relationship "to the degree known"."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SiblingRelationshipType"/> - </extension> - <strength value="required"/> - <description value="Sibling relationship types."/> - <valueSet value="http://hl7.org/fhir/ValueSet/sibling-relationship-codes|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:reference"> - <path value="Extension.extension"/> - <sliceName value="reference"/> - <short value="Link to sibling relative(s)"/> - <definition value="Points to the FamilyMemberHistory record of the relation who is the sibling of this relation."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:reference.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:reference.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:reference.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="reference"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:reference.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-sibling"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="natural brother(s) & natural sister(s) - genetic & other"/> - <definition value="Identifies a sibling of the relative."/> - <comment value="Some cases may have complex inner-pedigree-tree relationship. For instance, double cousin relationship need two extra link with In pedigree tree itself. This can't be revealed by relationship to subject."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="sibling | brother | sister | etc."/> - <definition value="Distinguishes between different types of sibling relationships with varying granularity to support capturing the relationship "to the degree known"."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SiblingRelationshipType"/> - </extension> - <strength value="required"/> - <description value="Sibling relationship types."/> - <valueSet value="http://hl7.org/fhir/ValueSet/sibling-relationship-codes|4.1.0"/> - </binding> - </element> - <element id="Extension.extension:reference"> - <path value="Extension.extension"/> - <sliceName value="reference"/> - <short value="Link to sibling relative(s)"/> - <definition value="Points to the FamilyMemberHistory record of the relation who is the sibling of this relation."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:reference.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:reference.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="reference"/> - </element> - <element id="Extension.extension:reference.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-sibling"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-method"/> - <resource> - <StructureDefinition> - <id value="hla-genotyping-results-method"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-method"/> - <version value="4.1.0"/> - <name value="method"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="The platform, methodology and software applied at the time of the genotyping."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The platform, methodology and software applied at the time of the genotyping"/> - <definition value="The platform, methodology and software applied at the time of the genotyping."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-method"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The platform, methodology and software applied at the time of the genotyping"/> - <definition value="The platform, methodology and software applied at the time of the genotyping."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-method"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-birthPlace"/> - <resource> - <StructureDefinition> - <id value="patient-birthPlace"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-birthPlace"/> - <version value="4.1.0"/> - <name value="birthPlace"/> - <title value="Birth Place"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The registered place of birth of the patient. A sytem may use the address.text if they don't store the birthPlace address in discrete elements."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Place of Birth for patient"/> - <definition value="The registered place of birth of the patient. A sytem may use the address.text if they don't store the birthPlace address in discrete elements."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-birthPlace"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Address"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Place of Birth for patient"/> - <definition value="The registered place of birth of the patient. A sytem may use the address.text if they don't store the birthPlace address in discrete elements."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-birthPlace"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Address"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsVariant"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsVariant"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsVariant"/> - <version value="4.1.0"/> - <name value="Variant"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Variant information."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Variant"/> - <definition value="Variant information."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="HGVS nomenclature for observed DNA sequence variant"/> - <definition value="Human Genome Variation Society (HGVS) nomenclature for a single or set of DNA Sequence Variation(s) identified in testing. The use of the nomenclature is also used to describe non-variations (aka. wild types). LOINC Code: ([48004-6](http://loinc.org/48004-6))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Name.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ClinVar-variant-database"/> - </extension> - <strength value="preferred"/> - <description value="NCBI central repository of potentially clinically relevant variants."/> - <valueSet value="http://hl7.org/fhir/ValueSet/clinvar"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Id"> - <path value="Extension.extension"/> - <sliceName value="Id"/> - <short value="DNA sequence variant ID"/> - <definition value="Identifier for DNA sequence variant. If a germline variant, ClinVar or dbSNP identifier should be used. If a somatic variant, COSMIC identifier should be used, unless in ClinVar then either maybe used. Need to provide the code system used (ClinVar, dbSNP, COSMIC) LOINC Code: ([48003-8](http://loinc.org/48003-8))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Id.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Id.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Id.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Id"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Id.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type"> - <path value="Extension.extension"/> - <sliceName value="Type"/> - <short value="DNA sequence variant type"/> - <definition value="Codified type for associated DNA sequence variant. DNA sequence variants use the HGVS notation, which implies the DNA sequence variant type. LOINC Code: ([48019-4](http://loinc.org/48019-4))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsVariant"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Variant"/> - <definition value="Variant information."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="HGVS nomenclature for observed DNA sequence variant"/> - <definition value="Human Genome Variation Society (HGVS) nomenclature for a single or set of DNA Sequence Variation(s) identified in testing. The use of the nomenclature is also used to describe non-variations (aka. wild types). LOINC Code: ([48004-6](http://loinc.org/48004-6))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ClinVar-variant-database"/> - </extension> - <strength value="preferred"/> - <description value="NCBI central repository of potentially clinically relevant variants."/> - <valueSet value="http://hl7.org/fhir/ValueSet/clinvar"/> - </binding> - </element> - <element id="Extension.extension:Id"> - <path value="Extension.extension"/> - <sliceName value="Id"/> - <short value="DNA sequence variant ID"/> - <definition value="Identifier for DNA sequence variant. If a germline variant, ClinVar or dbSNP identifier should be used. If a somatic variant, COSMIC identifier should be used, unless in ClinVar then either maybe used. Need to provide the code system used (ClinVar, dbSNP, COSMIC) LOINC Code: ([48003-8](http://loinc.org/48003-8))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:Id.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Id.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Id"/> - </element> - <element id="Extension.extension:Id.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:Type"> - <path value="Extension.extension"/> - <sliceName value="Type"/> - <short value="DNA sequence variant type"/> - <definition value="Codified type for associated DNA sequence variant. DNA sequence variants use the HGVS notation, which implies the DNA sequence variant type. LOINC Code: ([48019-4](http://loinc.org/48019-4))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Type"/> - </element> - <element id="Extension.extension:Type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsVariant"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-abatement"/> - <resource> - <StructureDefinition> - <id value="allergyintolerance-abatement"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-abatement"/> - <version value="4.1.0"/> - <name value="abatement"/> - <title value="abatement"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The date or estimated date that the allergy or intolerance resolved. This is called abatement because of the many overloaded connotations associated with resolution."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="When the allergy or intolerance resolved"/> - <definition value="The date or estimated date that the allergy or intolerance resolved. This is called abatement because of the many overloaded connotations associated with resolution."/> - <comment value="Age is generally used when the patient reports an age at which the allergy or intolerance abated. If there is no abatement element, the clinicalStatus can be used to convey whether allergy or intolerance has resolved or not. When abatementString exists, it conveys that the allergy or intolerance is abated."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-abatement"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="When the allergy or intolerance resolved"/> - <definition value="The date or estimated date that the allergy or intolerance resolved. This is called abatement because of the many overloaded connotations associated with resolution."/> - <comment value="Age is generally used when the patient reports an age at which the allergy or intolerance abated. If there is no abatement element, the clinicalStatus can be used to convey whether allergy or intolerance has resolved or not. When abatementString exists, it conveys that the allergy or intolerance is abated."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-abatement"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/medicationdispense-quantityRemaining"/> - <resource> - <StructureDefinition> - <id value="medicationdispense-quantityRemaining"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="phx"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/medicationdispense-quantityRemaining"/> - <version value="4.1.0"/> - <name value="quantityRemaining"/> - <title value="quantityRemaining"/> - <status value="draft"/> - <date value="2019-03-23"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The quanity left to be dispensed after a dispensing event."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="MedicationDispense"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Quanity of medication left to be dispensed after a dispensing event"/> - <definition value="The quanity left to be dispensed after a dispensing event."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/medicationdispense-quantityRemaining"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="A fixed quantity (no comparator)"/> - <definition value="The comparator is not used on a SimpleQuantity"/> - <comment value="The context of use may frequently define what kind of quantity this is and therefore what kind of units can be used. The context of use may also restrict the values for the comparator."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Quantity"/> - <profile value="http://hl7.org/fhir/StructureDefinition/SimpleQuantity"/> - </type> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="qty-3"/> - <severity value="error"/> - <human value="If a code for the unit is present, the system SHALL also be present"/> - <expression value="code.empty() or system.exists()"/> - <xpath value="not(exists(f:code)) or exists(f:system)"/> - <source value="http://hl7.org/fhir/StructureDefinition/Quantity"/> - </constraint> - <constraint> - <key value="sqty-1"/> - <severity value="error"/> - <human value="The comparator is not used on a SimpleQuantity"/> - <expression value="comparator.empty()"/> - <xpath value="not(exists(f:comparator))"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="SN (see also Range) or CQ"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="PQ, IVL<PQ>, MO, CO, depending on the values"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Quanity of medication left to be dispensed after a dispensing event"/> - <definition value="The quanity left to be dispensed after a dispensing event."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/medicationdispense-quantityRemaining"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Quantity"/> - <profile value="http://hl7.org/fhir/StructureDefinition/SimpleQuantity"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/language"/> - <resource> - <StructureDefinition> - <id value="language"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/language"/> - <version value="4.1.0"/> - <name value="Human Language"/> - <title value="Human Language of the item"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="The Human Language of the item."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName"/> - </context> - <context> - <type value="element"/> - <expression value="Address"/> - </context> - <context> - <type value="element"/> - <expression value="Annotation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Human Language for the item"/> - <definition value="The Human Language of the item."/> - <comment value="This is used where an item may repeat to indicate the language of each repeat."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/language"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Human Language for the item"/> - <definition value="The Human Language of the item."/> - <comment value="This is used where an item may repeat to indicate the language of each repeat."/> - <min value="1"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/language"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/11179-objectClassProperty"/> - <resource> - <StructureDefinition> - <id value="11179-objectClassProperty"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/11179-objectClassProperty"/> - <version value="4.1.0"/> - <name value="objectClassProperty"/> - <title value="Object Class Property"/> - <status value="draft"/> - <date value="2014-04-21"/> - <publisher value="Health Level Seven International (Orders and Observations)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="A quality common to all members of an object class. A property may be any feature that humans naturally use to distinguish one individual object from another. It is the human perception of a single quality of an object class in the real world. It is conceptual and thus has no particular associated means of representation by which the property can be communicated."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <uri value="http://metadata-standards.org/11179/"/> - <name value="ISO 11179"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.mapping"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Object Class Property"/> - <definition value="A quality common to all members of an object class. A property may be any feature that humans naturally use to distinguish one individual object from another. It is the human perception of a single quality of an object class in the real world. It is conceptual and thus has no particular associated means of representation by which the property can be communicated."/> - <comment value="ObjectClass and Property are treated as a data model that can be mapped to like any other. This extension merely captures the Property element as a discrete code. The information conveyed here should also be conveyed in human-readable form in the mapping.map element."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.meaning.property"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-objectClassProperty"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="11179ObjectClassProperty"/> - </extension> - <strength value="example"/> - <description value="A quality common to all members of an object class. A property may be any feature that humans naturally use to distinguish one individual object from another. It is the human perception of a single quality of an object class in the real world; e.g. name, identifier, gender, creationDate."/> - <valueSet value="http://hl7.org/fhir/ValueSet/dataelement-sdcobjectclassproperty"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Object Class Property"/> - <definition value="A quality common to all members of an object class. A property may be any feature that humans naturally use to distinguish one individual object from another. It is the human perception of a single quality of an object class in the real world. It is conceptual and thus has no particular associated means of representation by which the property can be communicated."/> - <comment value="ObjectClass and Property are treated as a data model that can be mapped to like any other. This extension merely captures the Property element as a discrete code. The information conveyed here should also be conveyed in human-readable form in the mapping.map element."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.meaning.property"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-objectClassProperty"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="11179ObjectClassProperty"/> - </extension> - <strength value="example"/> - <description value="A quality common to all members of an object class. A property may be any feature that humans naturally use to distinguish one individual object from another. It is the human perception of a single quality of an object class in the real world; e.g. name, identifier, gender, creationDate."/> - <valueSet value="http://hl7.org/fhir/ValueSet/dataelement-sdcobjectclassproperty"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/condition-related"/> - <resource> - <StructureDefinition> - <id value="condition-related"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/condition-related"/> - <version value="4.1.0"/> - <name value="related"/> - <title value="related"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="This condition has an unspecified relationship with another condition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Conditions associated with this condition"/> - <definition value="This condition has an unspecified relationship with another condition."/> - <comment value="When the relationship is specified, use the more specific extension, such as condition-dueTo, condition-occurredFollowing, or condition-part of."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-related"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Conditions associated with this condition"/> - <definition value="This condition has an unspecified relationship with another condition."/> - <comment value="When the relationship is specified, use the more specific extension, such as condition-dueTo, condition-occurredFollowing, or condition-part of."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-related"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/data-absent-reason"/> - <resource> - <StructureDefinition> - <id value="data-absent-reason"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/data-absent-reason"/> - <version value="4.1.0"/> - <name value="Data Absent Reason"/> - <title value="Why value is missing"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Provides a reason why the expected value or elements in the element that is extended are missing."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="unknown | asked | temp | notasked | masked | unsupported | astext | error"/> - <definition value="Provides a reason why the expected value or elements in the element that is extended are missing."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ANY.nullFlavor"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/data-absent-reason"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DataAbsentReason"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="Used to specify why the normally expected content of the data element is missing."/> - <valueSet value="http://hl7.org/fhir/ValueSet/data-absent-reason|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="unknown | asked | temp | notasked | masked | unsupported | astext | error"/> - <definition value="Provides a reason why the expected value or elements in the element that is extended are missing."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="ANY.nullFlavor"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/data-absent-reason"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DataAbsentReason"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="Used to specify why the normally expected content of the data element is missing."/> - <valueSet value="http://hl7.org/fhir/ValueSet/data-absent-reason|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-postBox"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-postBox"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-postBox"/> - <version value="4.1.0"/> - <name value="ADXP-postBox"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A numbered box located in a post station."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="postBox"/> - <definition value="A numbered box located in a post station."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=POB]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-postBox"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="postBox"/> - <definition value="A numbered box located in a post station."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=POB]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-postBox"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-expression"/> - <resource> - <StructureDefinition> - <id value="valueset-expression"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-expression"/> - <version value="4.1.0"/> - <name value="expression"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="An expression that provides an alternative definition of the content of the value set. There are two different ways to use this expression extension: If both an expression and a compose element is present, the compose is understood the make the same statement as the expression. If there is no compose, the expression is the only definition of the value set, and the value set can only be processed by a server that understands the expression syntax, it that is computable."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An alternative computable expression of the value set content"/> - <definition value="An expression that provides an alternative definition of the content of the value set. There are two different ways to use this expression extension: If both an expression and a compose element is present, the compose is understood the make the same statement as the expression. If there is no compose, the expression is the only definition of the value set, and the value set can only be processed by a server that understands the expression syntax, it that is computable."/> - <comment value="The expression may be a reference or the actual expression, and ss expected to be a computable format (use the [rules-text extension](extension-valueset-rules-text.html) for a non-computable description)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expression"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Expression"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An alternative computable expression of the value set content"/> - <definition value="An expression that provides an alternative definition of the content of the value set. There are two different ways to use this expression extension: If both an expression and a compose element is present, the compose is understood the make the same statement as the expression. If there is no compose, the expression is the only definition of the value set, and the value set can only be processed by a server that understands the expression syntax, it that is computable."/> - <comment value="The expression may be a reference or the actual expression, and ss expected to be a computable format (use the [rules-text extension](extension-valueset-rules-text.html) for a non-computable description)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expression"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Expression"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/consent-Witness"/> - <resource> - <StructureDefinition> - <id value="consent-Witness"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="cbcc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/consent-Witness"/> - <version value="4.1.0"/> - <name value="Witness"/> - <title value="Witness"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - CBCC WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/homehealth/index.cfm"/> - </telecom> - </contact> - <description value="Any witness to the consent."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Consent"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Witness to Consent"/> - <definition value="Any witness to the consent."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-Witness"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Witness to Consent"/> - <definition value="Any witness to the consent."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-Witness"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-episodeOfCare"/> - <resource> - <StructureDefinition> - <id value="workflow-episodeOfCare"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-episodeOfCare"/> - <version value="4.1.0"/> - <name value="episodeOfCare"/> - <title value="Episode of Care"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="The episode(s) of care that establishes the context for this {{title}}."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="DeviceRequest"/> - </context> - <context> - <type value="element"/> - <expression value="ServiceRequest"/> - </context> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <context> - <type value="element"/> - <expression value="DeviceUseStatement"/> - </context> - <context> - <type value="element"/> - <expression value="AdverseEvent"/> - </context> - <context> - <type value="element"/> - <expression value="CarePlan"/> - </context> - <context> - <type value="element"/> - <expression value="ClinicalImpression"/> - </context> - <context> - <type value="element"/> - <expression value="Communication"/> - </context> - <context> - <type value="element"/> - <expression value="CommunicationRequest"/> - </context> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated Encounter episode of care"/> - <definition value="The episode(s) of care that establishes the context for this {{title}}."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship(typeCode=COMP].source[classCode<=PCPR, moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-episodeOfCare"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated Encounter episode of care"/> - <definition value="The episode(s) of care that establishes the context for this {{title}}."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship(typeCode=COMP].source[classCode<=PCPR, moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-episodeOfCare"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/EpisodeOfCare"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-careplan"/> - <resource> - <StructureDefinition> - <id value="openEHR-careplan"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-careplan"/> - <version value="4.1.0"/> - <name value="careplan"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Additional details about the clinical management provided for this Reaction Event."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Clinical Management Details"/> - <definition value="Additional details about the clinical management provided for this Reaction Event."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-careplan"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/CarePlan"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Clinical Management Details"/> - <definition value="Additional details about the clinical management provided for this Reaction Event."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-careplan"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/CarePlan"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-summaryOf"/> - <resource> - <StructureDefinition> - <id value="diagnosticReport-summaryOf"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-summaryOf"/> - <version value="4.1.0"/> - <name value="summaryOf"/> - <title value="Summary Of"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A summary report that points to subordinate target reports."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Summary Of Other Reports"/> - <definition value="A summary report that points to subordinate target reports."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-summaryOf"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Summary Of Other Reports"/> - <definition value="A summary report that points to subordinate target reports."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-summaryOf"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/goal-reasonRejected"/> - <resource> - <StructureDefinition> - <id value="goal-reasonRejected"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/goal-reasonRejected"/> - <version value="4.1.0"/> - <name value="reasonRejected"/> - <title value="reason rejected"/> - <status value="draft"/> - <date value="2014-12-07"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir"/> - </telecom> - </contact> - <description value="The reason the goal was not accepted. Applies only if the status of the goal is rejected."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="qdm"/> - <uri value="http://www.healthit.gov/quality-data-model"/> - <name value="Quality Data Model"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Goal"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The reason the goal was not accepted"/> - <definition value="The reason the goal was not accepted. Applies only if the status of the goal is rejected."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="qdm"/> - <map value="negation rationale"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/goal-reasonRejected"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The reason the goal was not accepted"/> - <definition value="The reason the goal was not accepted. Applies only if the status of the goal is rejected."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="qdm"/> - <map value="negation rationale"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/goal-reasonRejected"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm-no-warnings"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-fmm-no-warnings"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm-no-warnings"/> - <version value="4.1.0"/> - <name value="fmm-no-warnings"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The FMM level that would be assigned to the artifact if it had no warnings."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="FMM Level (if no warnings)"/> - <definition value="The FMM level that would be assigned to the artifact if it had no warnings."/> - <comment value="If an artifact is higher than level 0, it must have no warnings from the resource/profile validator. This is the logical level that will apply once warnings have been resolved."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm-no-warnings"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="FMM Level (if no warnings)"/> - <definition value="The FMM level that would be assigned to the artifact if it had no warnings."/> - <comment value="If an artifact is higher than level 0, it must have no warnings from the resource/profile validator. This is the logical level that will apply once warnings have been resolved."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm-no-warnings"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-houseNumber"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber"/> - <version value="4.1.0"/> - <name value="ADXP-houseNumber"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The number of a building, house or lot alongside the street. Also known as "primary street number". This does not number the street but rather the building."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="houseNumber"/> - <definition value="The number of a building, house or lot alongside the street. Also known as "primary street number". This does not number the street but rather the building."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=BNR]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="houseNumber"/> - <definition value="The number of a building, house or lot alongside the street. Also known as "primary street number". This does not number the street but rather the building."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=BNR]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-expand-group"/> - <resource> - <StructureDefinition> - <id value="valueset-expand-group"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-expand-group"/> - <version value="4.1.0"/> - <name value="expand-group"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This extension declares a group of concepts that is generated into the ValueSet.expansion.contains hierarchy when the expansion is generated for a UI. THere is no inherent assigned meaning to the hierarchy; it is used to help the user navigate the concepts. Each group has a display and/or a code, and a list of members, which are either concepts in the value set, or other groups (by code)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Defines a hierarchy structure (when in UI mode)"/> - <definition value="This extension declares a group of concepts that is generated into the ValueSet.expansion.contains hierarchy when the expansion is generated for a UI. THere is no inherent assigned meaning to the hierarchy; it is used to help the user navigate the concepts. Each group has a display and/or a code, and a list of members, which are either concepts in the value set, or other groups (by code)."/> - <comment value="Note that there are inter-relationships between concept status/properties and the way the groups are built; these are described and documented in the (value set hierarchical example)[d.html]. Note that this extension should be ignored when the expansion is not generated for UI."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Underlying code from the system"/> - <definition value="A reference to a code from the include.system that defines the meaning associated with the group. Note that including the code in this extension does not include the code in the value set; if the code is intended to be in the value set, it must be listed directly as well."/> - <comment value="If there is no code, the group purely exists for display, and has no underlying meaning."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:display"> - <path value="Extension.extension"/> - <sliceName value="display"/> - <short value="Display for the group"/> - <definition value="The description for the group (goes in ValueSet.expansion.contains.dispaly). All groups need a display; this can only be omitted if there is a code that can be used to determine the display."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:display.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:display.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:display.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="display"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:display.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:member"> - <path value="Extension.extension"/> - <sliceName value="member"/> - <short value="Codes or other groups in this group"/> - <definition value="One of more codes that identify codes in the expansion or other groups."/> - <comment value="A group without a code can be included by giving it an id and using #[id] in place of the code."/> - <min value="1"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:member.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:member.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:member.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="member"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:member.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expand-group"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Defines a hierarchy structure (when in UI mode)"/> - <definition value="This extension declares a group of concepts that is generated into the ValueSet.expansion.contains hierarchy when the expansion is generated for a UI. THere is no inherent assigned meaning to the hierarchy; it is used to help the user navigate the concepts. Each group has a display and/or a code, and a list of members, which are either concepts in the value set, or other groups (by code)."/> - <comment value="Note that there are inter-relationships between concept status/properties and the way the groups are built; these are described and documented in the (value set hierarchical example)[d.html]. Note that this extension should be ignored when the expansion is not generated for UI."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Underlying code from the system"/> - <definition value="A reference to a code from the include.system that defines the meaning associated with the group. Note that including the code in this extension does not include the code in the value set; if the code is intended to be in the value set, it must be listed directly as well."/> - <comment value="If there is no code, the group purely exists for display, and has no underlying meaning."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - </element> - <element id="Extension.extension:display"> - <path value="Extension.extension"/> - <sliceName value="display"/> - <short value="Display for the group"/> - <definition value="The description for the group (goes in ValueSet.expansion.contains.dispaly). All groups need a display; this can only be omitted if there is a code that can be used to determine the display."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:display.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:display.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="display"/> - </element> - <element id="Extension.extension:display.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:member"> - <path value="Extension.extension"/> - <sliceName value="member"/> - <short value="Codes or other groups in this group"/> - <definition value="One of more codes that identify codes in the expansion or other groups."/> - <comment value="A group without a code can be included by giving it an id and using #[id] in place of the code."/> - <min value="1"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:member.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:member.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="member"/> - </element> - <element id="Extension.extension:member.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expand-group"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-author"/> - <resource> - <StructureDefinition> - <id value="questionnaireresponse-author"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-author"/> - <version value="4.1.0"/> - <name value="author"/> - <title value="Author"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Allows capturing, on a specific question or group of questions, exactly who was responsible for providing the answer(s)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse.item"/> - </context> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Who answered question/group"/> - <definition value="Allows capturing, on a specific question or group of questions, exactly who was responsible for providing the answer(s)."/> - <comment value="This should be drawn from one of the resources identified as an author of the QuestionnaireResponse overall."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="./participation[typeCode=SBJ]/role"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-author"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Device"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Who answered question/group"/> - <definition value="Allows capturing, on a specific question or group of questions, exactly who was responsible for providing the answer(s)."/> - <comment value="This should be drawn from one of the resources identified as an author of the QuestionnaireResponse overall."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="./participation[typeCode=SBJ]/role"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-author"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Device"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-search-parameter-combination"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement2-search-parameter-combination"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-search-parameter-combination"/> - <version value="4.1.0"/> - <name value="search-parameter-combination"/> - <title value="Search Parameter Combination"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="This extension defines a possible search parameter combination, by listing a set of search parameters and indicating whether they are required or optional. If a search combination is specified, clients should expect that they must submit a search that meets one of the required combinations or the search will be unsuccessful. If multiple search parameter combinations are specified, a client may pick between them, and supply the minimal required parameters for any of the combinations."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.resource"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An allowable parameter combination"/> - <definition value="This extension defines a possible search parameter combination, by listing a set of search parameters and indicating whether they are required or optional. If a search combination is specified, clients should expect that they must submit a search that meets one of the required combinations or the search will be unsuccessful. If multiple search parameter combinations are specified, a client may pick between them, and supply the minimal required parameters for any of the combinations."/> - <comment value="For example, on the Patient Resource you could use this to state support for searching by Patient.name and Patient.gender is required."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:required"> - <path value="Extension.extension"/> - <sliceName value="required"/> - <short value="A required search parameter name"/> - <definition value="A search parameter name in the combination which is required."/> - <min value="1"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:required.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:required.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="required"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional"> - <path value="Extension.extension"/> - <sliceName value="optional"/> - <short value="An optional search parameter name"/> - <definition value="A search parameter name in the combination which is optional."/> - <comment value="If a defined parameter is not listed as a required or optional parameter, the implication is that the parameter is not supported with this combination. Servers may ignore It, though some may return an error if it is used."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:optional.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:optional.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="optional"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-search-parameter-combination"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An allowable parameter combination"/> - <definition value="This extension defines a possible search parameter combination, by listing a set of search parameters and indicating whether they are required or optional. If a search combination is specified, clients should expect that they must submit a search that meets one of the required combinations or the search will be unsuccessful. If multiple search parameter combinations are specified, a client may pick between them, and supply the minimal required parameters for any of the combinations."/> - <comment value="For example, on the Patient Resource you could use this to state support for searching by Patient.name and Patient.gender is required."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required"> - <path value="Extension.extension"/> - <sliceName value="required"/> - <short value="A required search parameter name"/> - <definition value="A search parameter name in the combination which is required."/> - <min value="1"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:required.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="required"/> - </element> - <element id="Extension.extension:required.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:optional"> - <path value="Extension.extension"/> - <sliceName value="optional"/> - <short value="An optional search parameter name"/> - <definition value="A search parameter name in the combination which is optional."/> - <comment value="If a defined parameter is not listed as a required or optional parameter, the implication is that the parameter is not supported with this combination. Servers may ignore It, though some may return an error if it is used."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:optional.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="optional"/> - </element> - <element id="Extension.extension:optional.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-search-parameter-combination"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqm-ValidityPeriod"/> - <resource> - <StructureDefinition> - <id value="cqm-ValidityPeriod"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sd"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqm-ValidityPeriod"/> - <version value="4.1.0"/> - <name value="ValidityPeriod"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - Clinical Quality Information WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/cqi/index.cfm"/> - </telecom> - </contact> - <description value="The period in which the catalog is valid."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Composition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Validity Period"/> - <definition value="The period in which the catalog is valid."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqm-ValidityPeriod"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Validity Period"/> - <definition value="The period in which the catalog is valid."/> - <min value="1"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqm-ValidityPeriod"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address"/> - <resource> - <StructureDefinition> - <id value="iso21090-TEL-address"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address"/> - <version value="4.1.0"/> - <name value="TEL-address"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A V3 compliant, RFC 3966 conformant URI version of the telephone or fax number."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ContactPoint"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="RFC 3966 compliant telephone or fax number"/> - <definition value="A V3 compliant, RFC 3966 conformant URI version of the telephone or fax number."/> - <comment value="Note that this form is supposed to be used in CDA, but many CDA documents are not actually conformant."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="TEL.address"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="url"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="RFC 3966 compliant telephone or fax number"/> - <definition value="A V3 compliant, RFC 3966 conformant URI version of the telephone or fax number."/> - <comment value="Note that this form is supposed to be used in CDA, but many CDA documents are not actually conformant."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="TEL.address"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-TEL-address"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="url"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/procedure-approachBodyStructure"/> - <resource> - <StructureDefinition> - <id value="procedure-approachBodyStructure"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/procedure-approachBodyStructure"/> - <version value="4.1.0"/> - <name value="approachBodyStructure"/> - <title value="approachBodyStructure"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The approach body site used for this procedure. Multiple locations are allowed."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <context> - <type value="element"/> - <expression value="ServiceRequest"/> - </context> - <context> - <type value="element"/> - <expression value="DeviceRequest"/> - </context> - <context> - <type value="element"/> - <expression value="DeviceUseStatement"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The access point or points used for this procedure"/> - <definition value="The approach body site used for this procedure. Multiple locations are allowed."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-approachBodyStructure"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/BodyStructure"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The access point or points used for this procedure"/> - <definition value="The approach body site used for this procedure. Multiple locations are allowed."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-approachBodyStructure"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/BodyStructure"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-template-status"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-template-status"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-template-status"/> - <version value="4.1.0"/> - <name value="template-status"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Status code taken from [HL7 template specification](http://www.hl7.org/implement/standards/product_brief.cfm?product_id=377) - allows for alignment with the template DSTU, and has more authoring status codes."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Template Status Code (more authoring statuses)"/> - <definition value="Status code taken from [HL7 template specification](http://www.hl7.org/implement/standards/product_brief.cfm?product_id=377) - allows for alignment with the template DSTU, and has more authoring status codes."/> - <comment value="The Profile status has the codes that are relevant to end-users/developers, while this extension has the codes used by profile developers."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-template-status"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="TemplateStatusCode"/> - </extension> - <strength value="required"/> - <description value="The status indicates the level of maturity of the design and may be used to manage the use of the design."/> - <valueSet value="http://hl7.org/fhir/ValueSet/template-status-code|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Template Status Code (more authoring statuses)"/> - <definition value="Status code taken from [HL7 template specification](http://www.hl7.org/implement/standards/product_brief.cfm?product_id=377) - allows for alignment with the template DSTU, and has more authoring status codes."/> - <comment value="The Profile status has the codes that are relevant to end-users/developers, while this extension has the codes used by profile developers."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-template-status"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="TemplateStatusCode"/> - </extension> - <strength value="required"/> - <description value="The status indicates the level of maturity of the design and may be used to manage the use of the design."/> - <valueSet value="http://hl7.org/fhir/ValueSet/template-status-code|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-deprecated"/> - <resource> - <StructureDefinition> - <id value="valueset-deprecated"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-deprecated"/> - <version value="4.1.0"/> - <name value="deprecated"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="if ture, indicates that the concept is deprecated from the value set - that is, it should not be used, and is planned to be withdrawn."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The concept should not be used"/> - <definition value="if ture, indicates that the concept is deprecated from the value set - that is, it should not be used, and is planned to be withdrawn."/> - <comment value="Ths status relates to a concept's inclusion in the value set, and might be different to the underlying status of the concept itself."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-deprecated"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The concept should not be used"/> - <definition value="if ture, indicates that the concept is deprecated from the value set - that is, it should not be used, and is planned to be withdrawn."/> - <comment value="Ths status relates to a concept's inclusion in the value set, and might be different to the underlying status of the concept itself."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-deprecated"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-summary"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-summary"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-summary"/> - <version value="4.1.0"/> - <name value="summary"/> - <title value="summary"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Additional text for the summary presentation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional text for the summary presentation"/> - <definition value="Additional text for the summary presentation."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-summary"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional text for the summary presentation"/> - <definition value="Additional text for the summary presentation."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-summary"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="markdown"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAssessedCondition"/> - <resource> - <StructureDefinition> - <id value="DiagnosticReport-geneticsAssessedCondition"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAssessedCondition"/> - <version value="4.1.0"/> - <name value="AssessedCondition"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Used to denote condition context for genetic testing, which may influence reported variants and interpretation for large genomic testing panels e.g. lung cancer or familial breast cancer."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="AssessedCondition"/> - <definition value="Used to denote condition context for genetic testing, which may influence reported variants and interpretation for large genomic testing panels e.g. lung cancer or familial breast cancer."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAssessedCondition"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="AssessedCondition"/> - <definition value="Used to denote condition context for genetic testing, which may influence reported variants and interpretation for large genomic testing panels e.g. lung cancer or familial breast cancer."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAssessedCondition"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-additionalLocator"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-additionalLocator"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-additionalLocator"/> - <version value="4.1.0"/> - <name value="ADXP-additionalLocator"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="This can be a unit designator, such as apartment number, suite number, or floor. There may be several unit designators in an address (e.g., "3rd floor, Appt. 342"). This can also be a designator pointing away from the location, rather than specifying a smaller location within some larger one (e.g., Dutch "t.o." means "opposite to" for house boats located across the street facing houses)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="additionalLocator"/> - <definition value="This can be a unit designator, such as apartment number, suite number, or floor. There may be several unit designators in an address (e.g., "3rd floor, Appt. 342"). This can also be a designator pointing away from the location, rather than specifying a smaller location within some larger one (e.g., Dutch "t.o." means "opposite to" for house boats located across the street facing houses)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=ADL]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-additionalLocator"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="additionalLocator"/> - <definition value="This can be a unit designator, such as apartment number, suite number, or floor. There may be several unit designators in an address (e.g., "3rd floor, Appt. 342"). This can also be a designator pointing away from the location, rather than specifying a smaller location within some larger one (e.g., Dutch "t.o." means "opposite to" for house boats located across the street facing houses)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=ADL]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-additionalLocator"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-author"/> - <resource> - <StructureDefinition> - <id value="valueset-author"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-author"/> - <version value="4.1.0"/> - <name value="author"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The entity or set of entities that create and may modify the Value Set Definition content. The name of a group or an individual, along with contact details."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Entity/entities that create and may modify the Value Set"/> - <definition value="The entity or set of entities that create and may modify the Value Set Definition content. The name of a group or an individual, along with contact details."/> - <comment value="This can be any combination of groups or individuals. When known and actively maintained, this should be populated. The information included about the Author may include contact information."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-author"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="ContactDetail"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Entity/entities that create and may modify the Value Set"/> - <definition value="The entity or set of entities that create and may modify the Value Set Definition content. The name of a group or an individual, along with contact details."/> - <comment value="This can be any combination of groups or individuals. When known and actively maintained, this should be populated. The information included about the Author may include contact information."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-author"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="ContactDetail"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/specimen-specialHandling"/> - <resource> - <StructureDefinition> - <id value="specimen-specialHandling"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/specimen-specialHandling"/> - <version value="4.1.0"/> - <name value="specialHandling"/> - <title value="Special handling"/> - <status value="draft"/> - <date value="2015-02-19"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Special handling during the collection, transport, or storage of the specimen."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Specimen.collection"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Special handling of the specimen"/> - <definition value="Special handling during the collection, transport, or storage of the specimen."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-specialHandling"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Special handling of the specimen"/> - <definition value="Special handling during the collection, transport, or storage of the specimen."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-specialHandling"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-system"/> - <resource> - <StructureDefinition> - <id value="valueset-system"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-system"/> - <version value="4.1.0"/> - <name value="system"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Allows a direct reference to the code system for FHIR query."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include.system"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system resource"/> - <definition value="Allows a direct reference to the code system for FHIR query."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-system"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/CodeSystem"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system resource"/> - <definition value="Allows a direct reference to the code system for FHIR query."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-system"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/CodeSystem"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-MPPS"/> - <resource> - <StructureDefinition> - <id value="auditevent-MPPS"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-MPPS"/> - <version value="4.1.0"/> - <name value="MPPS"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="An MPPS Instance UID associated with this entity."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="MPPS instance UID"/> - <definition value="An MPPS Instance UID associated with this entity."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="MPPS"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-MPPS"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Identifier"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="MPPS instance UID"/> - <definition value="An MPPS Instance UID associated with this entity."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="dicom"/> - <map value="MPPS"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-MPPS"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Identifier"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-bodyPosition"/> - <resource> - <StructureDefinition> - <id value="observation-bodyPosition"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-bodyPosition"/> - <version value="4.1.0"/> - <name value="bodyPosition"/> - <title value="bodyPosition"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="The position of the body when the observation was done, e.g. standing, sitting. To be used only when the body position in not precoordinated in the observation code."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="Specimen.collection"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The body position during the observation"/> - <definition value="The position of the body when the observation was done, e.g. standing, sitting. To be used only when the body position in not precoordinated in the observation code."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-bodyPosition"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The body position during the observation"/> - <definition value="The position of the body when the observation was done, e.g. standing, sitting. To be used only when the body position in not precoordinated in the observation code."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-bodyPosition"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsDNARegionName"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsDNARegionName"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsDNARegionName"/> - <version value="4.1.0"/> - <name value="DNARegionName"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="A human readable name for the region of interest. Typically Exon #, Intron # or other. NOTE: This is not standardized and is mainly for convenience and display purposes. LOINC Code: ([47999-8](http://loinc.org/47999-8))."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="DNA region name"/> - <definition value="A human readable name for the region of interest. Typically Exon #, Intron # or other. NOTE: This is not standardized and is mainly for convenience and display purposes. LOINC Code: ([47999-8](http://loinc.org/47999-8))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsDNARegionName"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="DNA region name"/> - <definition value="A human readable name for the region of interest. Typically Exon #, Intron # or other. NOTE: This is not standardized and is mainly for convenience and display purposes. LOINC Code: ([47999-8](http://loinc.org/47999-8))."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsDNARegionName"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-prohibited"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement-prohibited"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-prohibited"/> - <version value="4.1.0"/> - <name value="prohibited"/> - <title value="Conformance prohibition"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="If set to true, indicates that support for the specified behavior would make a system non-conformant with the specification."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.resource.interaction"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.resource.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.operation"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.document"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.interaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Functionality not allowed"/> - <definition value="If set to true, indicates that support for the specified behavior would make a system non-conformant with the specification."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="true"/> - <isModifierReason value="If true, this extension inverts the meaning of the conformance statement"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-prohibited"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Functionality not allowed"/> - <definition value="If set to true, indicates that support for the specified behavior would make a system non-conformant with the specification."/> - <min value="0"/> - <max value="1"/> - <isModifier value="true"/> - <isModifierReason value="If true, this extension inverts the meaning of the conformance statement"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-prohibited"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-administration"/> - <resource> - <StructureDefinition> - <id value="openEHR-administration"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-administration"/> - <version value="4.1.0"/> - <name value="administration"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Link to an actual medication administration record with the full details of the administration, if a link is known."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Actual medication record, if known"/> - <definition value="Link to an actual medication administration record with the full details of the administration, if a link is known."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-administration"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Actual medication record, if known"/> - <definition value="Link to an actual medication administration record with the full details of the administration, if a link is known."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-administration"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-interpreterRequired"/> - <resource> - <StructureDefinition> - <id value="patient-interpreterRequired"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-interpreterRequired"/> - <version value="4.1.0"/> - <name value="interpreterRequired"/> - <title value="interpreterRequired"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This Patient requires an interpreter to communicate healthcare information to the practitioner."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether the patient needs an interpreter"/> - <definition value="This Patient requires an interpreter to communicate healthcare information to the practitioner."/> - <comment value="The Patient does not speak the default language of the organization, and hence requires an interpreter. If the patient has other languages in the Communications list, then that would be the type of interpreter required."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-interpreterRequired"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether the patient needs an interpreter"/> - <definition value="This Patient requires an interpreter to communicate healthcare information to the practitioner."/> - <comment value="The Patient does not speak the default language of the organization, and hence requires an interpreter. If the patient has other languages in the Communications list, then that would be the type of interpreter required."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-interpreterRequired"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/usagecontext-group"/> - <resource> - <StructureDefinition> - <id value="usagecontext-group"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/usagecontext-group"/> - <version value="4.1.0"/> - <name value="group"/> - <title value="Context Group"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Defines the group in which this usage context is a member. Multiple groups are "OR'ed", contexts within a group are "AND'ed"."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="UsageContext"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The group which this usage context is part of"/> - <definition value="Defines the group in which this usage context is a member. Multiple groups are "OR'ed", contexts within a group are "AND'ed"."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/usagecontext-group"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The group which this usage context is part of"/> - <definition value="Defines the group in which this usage context is a member. Multiple groups are "OR'ed", contexts within a group are "AND'ed"."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/usagecontext-group"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-resolutionAge"/> - <resource> - <StructureDefinition> - <id value="allergyintolerance-resolutionAge"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-resolutionAge"/> - <version value="4.1.0"/> - <name value="resolutionAge"/> - <title value="resolutionAge"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The estimated patient age at which the allergy or intolerance resolved. Should be specified only if the status is resolved."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Age that the allergy or intolerance resolved"/> - <definition value="The estimated patient age at which the allergy or intolerance resolved. Should be specified only if the status is resolved."/> - <comment value="Removed Date since it is hard to imagine knowing the date an allergy abated. The assertion date is already captured."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-resolutionAge"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Age"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Age that the allergy or intolerance resolved"/> - <definition value="The estimated patient age at which the allergy or intolerance resolved. Should be specified only if the status is resolved."/> - <comment value="Removed Date since it is hard to imagine knowing the date an allergy abated. The assertion date is already captured."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-resolutionAge"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Age"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/rendering-markdown"/> - <resource> - <StructureDefinition> - <id value="rendering-markdown"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/rendering-markdown"/> - <version value="4.1.0"/> - <name value="markdown"/> - <status value="draft"/> - <date value="2014-04-23"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="This is an equivalent of the string on which the extension is sent, but includes additional markdown (see documentation about [markdown](datatypes.html#markdown). Note that using HTML [xhtml](extension-rendering-xhtml.html) can allow for greater precision of display."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="string"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="String equivalent with markdown"/> - <definition value="This is an equivalent of the string on which the extension is sent, but includes additional markdown (see documentation about [markdown](datatypes.html#markdown). Note that using HTML [xhtml](extension-rendering-xhtml.html) can allow for greater precision of display."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ED can be markdown content"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-markdown"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="String equivalent with markdown"/> - <definition value="This is an equivalent of the string on which the extension is sent, but includes additional markdown (see documentation about [markdown](datatypes.html#markdown). Note that using HTML [xhtml](extension-rendering-xhtml.html) can allow for greater precision of display."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="ED can be markdown content"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-markdown"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="markdown"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-streetName"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName"/> - <version value="4.1.0"/> - <name value="ADXP-streetName"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="streetName."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="streetName"/> - <definition value="streetName."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=STR]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="streetName"/> - <definition value="streetName."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=STR]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationType"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-deliveryInstallationType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationType"/> - <version value="4.1.0"/> - <name value="ADXP-deliveryInstallationType"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Indicates the type of delivery installation (the facility to which the mail will be delivered prior to final shipping via the delivery mode.) Example: post office, letter carrier depot, community mail center, station, etc."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryInstallationType"/> - <definition value="Indicates the type of delivery installation (the facility to which the mail will be delivered prior to final shipping via the delivery mode.) Example: post office, letter carrier depot, community mail center, station, etc."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DINST]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryInstallationType"/> - <definition value="Indicates the type of delivery installation (the facility to which the mail will be delivered prior to final shipping via the delivery mode.) Example: post office, letter carrier depot, community mail center, station, etc."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DINST]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-isCommonBinding"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"/> - <version value="4.1.0"/> - <name value="isCommonBinding"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Whether the binding is used on multiple resources, or only on this resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.binding"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether used on multiple resources"/> - <definition value="Whether the binding is used on multiple resources, or only on this resource."/> - <comment value="Some bindings are defined once internally and used in many places. This extension marks those bindings, to allow for generating the binding information once when generating code. When isCommonBinding is true, bindingName will be the same, and unique (e.g. identify re-uses by looking at bindingName)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether used on multiple resources"/> - <definition value="Whether the binding is used on multiple resources, or only on this resource."/> - <comment value="Some bindings are defined once internally and used in many places. This extension marks those bindings, to allow for generating the binding information once when generating code. When isCommonBinding is true, bindingName will be the same, and unique (e.g. identify re-uses by looking at bindingName)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/consent-location"/> - <resource> - <StructureDefinition> - <id value="consent-location"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="cbcc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/consent-location"/> - <version value="4.1.0"/> - <name value="location"/> - <title value="Location of Access restriction"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - CBCC WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/homehealth/index.cfm"/> - </telecom> - </contact> - <description value="Restricts this exception to only apply a specific location as defined."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Consent.provision"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A location specific constraint"/> - <definition value="Restricts this exception to only apply a specific location as defined."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-location"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A location specific constraint"/> - <definition value="Restricts this exception to only apply a specific location as defined."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-location"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-censusTract"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract"/> - <version value="4.1.0"/> - <name value="ADXP-censusTract"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A geographic sub-unit delineated for demographic purposes."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="censusTract"/> - <definition value="A geographic sub-unit delineated for demographic purposes."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=CEN]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="censusTract"/> - <definition value="A geographic sub-unit delineated for demographic purposes."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=CEN]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-censusTract"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-secondaryFinding"/> - <resource> - <StructureDefinition> - <id value="observation-secondaryFinding"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-secondaryFinding"/> - <version value="4.1.0"/> - <name value="secondaryFinding"/> - <title value="Secondary Finding"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="Secondary findings are genetic test results that provide information about variants in a gene unrelated to the primary purpose for the testing, most often discovered when [Whole Exome Sequencing (WES)](https://en.wikipedia.org/wiki/Exome_sequencing) or [Whole Genome Sequencing (WGS)](https://en.wikipedia.org/wiki/Whole_genome_sequencing) is performed. This extension should be used to denote when a genetic finding is being shared as a secondary finding, and ideally refer to a corresponding guideline or policy statement. For more detail, please see: https://ghr.nlm.nih.gov/primer/testing/secondaryfindings."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Secondary findings are genetic test results that provide information about variants in a gene unrelated to the primary purpose for the testing, most often discovered when [Whole Exome Sequencing (WES)](https://en.wikipedia.org/wiki/Exome_sequencing) or [Whole Genome Sequencing (WGS)](https://en.wikipedia.org/wiki/Whole_genome_sequencing) is performed. This extension should be used to denote when a genetic finding is being shared as a secondary finding, and ideally refer to a corresponding guideline or policy statement. For more detail, please see: https://ghr.nlm.nih.gov/primer/testing/secondaryfindings"/> - <definition value="Secondary findings are genetic test results that provide information about variants in a gene unrelated to the primary purpose for the testing, most often discovered when [Whole Exome Sequencing (WES)](https://en.wikipedia.org/wiki/Exome_sequencing) or [Whole Genome Sequencing (WGS)](https://en.wikipedia.org/wiki/Whole_genome_sequencing) is performed. This extension should be used to denote when a genetic finding is being shared as a secondary finding, and ideally refer to a corresponding guideline or policy statement. For more detail, please see: https://ghr.nlm.nih.gov/primer/testing/secondaryfindings."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-secondaryFinding"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SecondaryFinding"/> - </extension> - <strength value="extensible"/> - <description value="Codes to denote a guideline or policy statement.when a genetic test result is being shared as a secondary finding."/> - <valueSet value="http://hl7.org/fhir/ValueSet/secondary-finding"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Secondary findings are genetic test results that provide information about variants in a gene unrelated to the primary purpose for the testing, most often discovered when [Whole Exome Sequencing (WES)](https://en.wikipedia.org/wiki/Exome_sequencing) or [Whole Genome Sequencing (WGS)](https://en.wikipedia.org/wiki/Whole_genome_sequencing) is performed. This extension should be used to denote when a genetic finding is being shared as a secondary finding, and ideally refer to a corresponding guideline or policy statement. For more detail, please see: https://ghr.nlm.nih.gov/primer/testing/secondaryfindings"/> - <definition value="Secondary findings are genetic test results that provide information about variants in a gene unrelated to the primary purpose for the testing, most often discovered when [Whole Exome Sequencing (WES)](https://en.wikipedia.org/wiki/Exome_sequencing) or [Whole Genome Sequencing (WGS)](https://en.wikipedia.org/wiki/Whole_genome_sequencing) is performed. This extension should be used to denote when a genetic finding is being shared as a secondary finding, and ideally refer to a corresponding guideline or policy statement. For more detail, please see: https://ghr.nlm.nih.gov/primer/testing/secondaryfindings."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-secondaryFinding"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SecondaryFinding"/> - </extension> - <strength value="extensible"/> - <description value="Codes to denote a guideline or policy statement.when a genetic test result is being shared as a secondary finding."/> - <valueSet value="http://hl7.org/fhir/ValueSet/secondary-finding"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-AD-use"/> - <resource> - <StructureDefinition> - <id value="iso21090-AD-use"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-AD-use"/> - <version value="4.1.0"/> - <name value="AD-use"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Uses of Addresses - codes not defined as part of Address.use."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="BAD | CONF | HP | HV | DIR | PUB | PHYS | PST"/> - <definition value="Uses of Addresses - codes not defined as part of Address.use."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="AD.use"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-AD-use"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="PostalAddressUse"/> - </extension> - <strength value="required"/> - <description value="Uses of an address not included in Address.use."/> - <valueSet value="http://hl7.org/fhir/ValueSet/postal-address-use|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="BAD | CONF | HP | HV | DIR | PUB | PHYS | PST"/> - <definition value="Uses of Addresses - codes not defined as part of Address.use."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="AD.use"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-AD-use"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="PostalAddressUse"/> - </extension> - <strength value="required"/> - <description value="Uses of an address not included in Address.use."/> - <valueSet value="http://hl7.org/fhir/ValueSet/postal-address-use|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/rendering-xhtml"/> - <resource> - <StructureDefinition> - <id value="rendering-xhtml"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/rendering-xhtml"/> - <version value="4.1.0"/> - <name value="xhtml"/> - <status value="draft"/> - <date value="2014-04-23"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="This is an equivalent of the string on which the extension is sent, but includes additional XHTML markup, such as bold, italics, styles, tables, etc. Existing [restrictions on XHTML content](narrative.html#security) apply. Note that using [markdown](extension-rendering-markdown.html) allows for greater flexibility of display."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="string"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="String equivalent with html markup"/> - <definition value="This is an equivalent of the string on which the extension is sent, but includes additional XHTML markup, such as bold, italics, styles, tables, etc. Existing [restrictions on XHTML content](narrative.html#security) apply. Note that using [markdown](extension-rendering-markdown.html) allows for greater flexibility of display."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ED can be XHTML content"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-xhtml"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="String equivalent with html markup"/> - <definition value="This is an equivalent of the string on which the extension is sent, but includes additional XHTML markup, such as bold, italics, styles, tables, etc. Existing [restrictions on XHTML content](narrative.html#security) apply. Note that using [markdown](extension-rendering-markdown.html) allows for greater flexibility of display."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="ED can be XHTML content"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-xhtml"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName"/> - <resource> - <StructureDefinition> - <id value="patient-mothersMaidenName"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName"/> - <version value="4.1.0"/> - <name value="mothersMaidenName"/> - <title value="Mother's Maiden Name"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Mother's maiden (unmarried) name, commonly collected to help verify patient identity."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Mother's Maiden name"/> - <definition value="Mother's maiden (unmarried) name, commonly collected to help verify patient identity."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="PID-6"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="Role relationship to entity with maiden name (?)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Mother's Maiden name"/> - <definition value="Mother's maiden (unmarried) name, commonly collected to help verify patient identity."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="PID-6"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="Role relationship to entity with maiden name (?)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-mothersMaidenName"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/translation"/> - <resource> - <StructureDefinition> - <id value="translation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/translation"/> - <version value="4.1.0"/> - <name value="Translation"/> - <title value="Translation"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Language translation from base language of resource to another language."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="string"/> - </context> - <context> - <type value="element"/> - <expression value="code"/> - </context> - <context> - <type value="element"/> - <expression value="markdown"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Language Translation (Localization)"/> - <definition value="Language translation from base language of resource to another language."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ST.translation"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:lang"> - <path value="Extension.extension"/> - <sliceName value="lang"/> - <short value="Code for Language"/> - <definition value="Code for Language."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:lang.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:lang.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:lang.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="lang"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:lang.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:content"> - <path value="Extension.extension"/> - <sliceName value="content"/> - <short value="Content in other Language"/> - <definition value="Content in other Language."/> - <comment value="The type (string or markdown) must match the context in which it is used."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:content.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:content.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:content.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="content"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:content.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/translation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Language Translation (Localization)"/> - <definition value="Language translation from base language of resource to another language."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ST.translation"/> - </mapping> - </element> - <element id="Extension.extension:lang"> - <path value="Extension.extension"/> - <sliceName value="lang"/> - <short value="Code for Language"/> - <definition value="Code for Language."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:lang.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:lang.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="lang"/> - </element> - <element id="Extension.extension:lang.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - </element> - <element id="Extension.extension:content"> - <path value="Extension.extension"/> - <sliceName value="content"/> - <short value="Content in other Language"/> - <definition value="Content in other Language."/> - <comment value="The type (string or markdown) must match the context in which it is used."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:content.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:content.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="content"/> - </element> - <element id="Extension.extension:content.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - <type> - <code value="markdown"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/translation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/goal-relationship"/> - <resource> - <StructureDefinition> - <id value="goal-relationship"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/goal-relationship"/> - <version value="4.1.0"/> - <name value="relationship"/> - <title value="related goal"/> - <status value="draft"/> - <date value="2014-12-07"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir"/> - </telecom> - </contact> - <description value="Establishes a relationship between this goal and other goals."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Goal"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Goals related to this Goal"/> - <definition value="Establishes a relationship between this goal and other goals."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="predecessor | successor | replacement | other"/> - <definition value="Identifies what kind of relationship exists between source and target goal."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GoalRelationshipType"/> - </extension> - <strength value="extensible"/> - <description value="Types of relationships between two goals."/> - <valueSet value="http://hl7.org/fhir/ValueSet/goal-relationship-type"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:target"> - <path value="Extension.extension"/> - <sliceName value="target"/> - <short value="Related goal"/> - <definition value="The goal the relationship exists with."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:target.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:target.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:target.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="target"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:target.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Goal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/goal-relationship"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Goals related to this Goal"/> - <definition value="Establishes a relationship between this goal and other goals."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="predecessor | successor | replacement | other"/> - <definition value="Identifies what kind of relationship exists between source and target goal."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GoalRelationshipType"/> - </extension> - <strength value="extensible"/> - <description value="Types of relationships between two goals."/> - <valueSet value="http://hl7.org/fhir/ValueSet/goal-relationship-type"/> - </binding> - </element> - <element id="Extension.extension:target"> - <path value="Extension.extension"/> - <sliceName value="target"/> - <short value="Related goal"/> - <definition value="The goal the relationship exists with."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:target.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:target.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="target"/> - </element> - <element id="Extension.extension:target.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Goal"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/goal-relationship"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-signatureRequired"/> - <resource> - <StructureDefinition> - <id value="questionnaire-signatureRequired"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-signatureRequired"/> - <version value="4.1.0"/> - <name value="signatureRequired"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Indicates that a signature (of the specified type) is needed when completing the QuestionnaireResponse."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Is signature needed?"/> - <definition value="Indicates that a signature (of the specified type) is needed when completing the QuestionnaireResponse."/> - <comment value="If this appears at the Questionnaire level, then the signature will be gathered for the entire form when it is marked complete. If it appears on a particular item, then it will be gathered on that question or group when it is filled in. (E.g. seeking the user's initials beside certain questions.) The signature can be captured using the http://hl7.org/fhir/StructureDefinition/questionnaireresponse-signature extension."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-signatureRequired"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SignatureRequired"/> - </extension> - <strength value="preferred"/> - <description value="The type of signature needed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/signature-type"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Is signature needed?"/> - <definition value="Indicates that a signature (of the specified type) is needed when completing the QuestionnaireResponse."/> - <comment value="If this appears at the Questionnaire level, then the signature will be gathered for the entire form when it is marked complete. If it appears on a particular item, then it will be gathered on that question or group when it is filled in. (E.g. seeking the user's initials beside certain questions.) The signature can be captured using the http://hl7.org/fhir/StructureDefinition/questionnaireresponse-signature extension."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-signatureRequired"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SignatureRequired"/> - </extension> - <strength value="preferred"/> - <description value="The type of signature needed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/signature-type"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/request-doNotPerform"/> - <resource> - <StructureDefinition> - <id value="request-doNotPerform"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/request-doNotPerform"/> - <version value="4.1.0"/> - <name value="doNotPerform"/> - <title value="Do Not Perfom"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="If true indicates that the request is asking for the specified action to not occur."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="true if request is prohibiting action"/> - <definition value="If true indicates that the request is asking for the specified action to not occur."/> - <comment value="The attributes provided with the request qualify what is not to be done. For example, if an effectiveTime is provided, the "do not" request only applies within the specified time. If a performerType is specified then the "do not" request only applies to performers of that type. Qualifiers include: code, subject, occurrence, perormerType and performer. In some cases, the Request.code may pre-coordinate prohibition into the requested action. E.g. "NPO" (nothing by mouth), "DNR" (do not recussitate). If this happens, doNotPerform SHALL NOT be set to true. I.e. The resource shall not have double negation. (E.g. "Do not DNR")."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="true"/> - <isModifierReason value="If true this element negates the specified action. For Example, instead of a request for a procedure, it is a request for the procedure to not occur."/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-doNotPerform"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="true if request is prohibiting action"/> - <definition value="If true indicates that the request is asking for the specified action to not occur."/> - <comment value="The attributes provided with the request qualify what is not to be done. For example, if an effectiveTime is provided, the "do not" request only applies within the specified time. If a performerType is specified then the "do not" request only applies to performers of that type. Qualifiers include: code, subject, occurrence, perormerType and performer. In some cases, the Request.code may pre-coordinate prohibition into the requested action. E.g. "NPO" (nothing by mouth), "DNR" (do not recussitate). If this happens, doNotPerform SHALL NOT be set to true. I.e. The resource shall not have double negation. (E.g. "Do not DNR")."/> - <min value="0"/> - <max value="1"/> - <isModifier value="true"/> - <isModifierReason value="If true this element negates the specified action. For Example, instead of a request for a procedure, it is a request for the procedure to not occur."/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-doNotPerform"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-systemName"/> - <resource> - <StructureDefinition> - <id value="valueset-systemName"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-systemName"/> - <version value="4.1.0"/> - <name value="systemName"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The human-readable name for the code system."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system name"/> - <definition value="The human-readable name for the code system."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-systemName"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system name"/> - <definition value="The human-readable name for the code system."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-systemName"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAllele"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsAllele"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAllele"/> - <version value="4.1.0"/> - <name value="Allele"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Allele information."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Allele"/> - <definition value="Allele information."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="Name of allele"/> - <definition value="An allele is one of a set of coexisting sequence variants of a gene ([SO:0001023](http://www.sequenceontology.org/browser/current_svn/term/SO:0001023)). This element is the common name for the allele. LOINC Code: ([48008-7](http://loinc.org/48008-7))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EBI-AlleleName"/> - </extension> - <strength value="preferred"/> - <description value="EMBL-EBI database of AlleleName."/> - <valueSet value="http://hl7.org/fhir/ValueSet/allelename"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:State"> - <path value="Extension.extension"/> - <sliceName value="State"/> - <short value="The level of occurrence of a single DNA sequence variant within a set of chromosomes: Heteroplasmic / Homoplasmic / Homozygous / Heterozygous / Hemizygous"/> - <definition value="The level of occurrence of a single DNA Sequence Variant within a set of chromosomes. Heterozygous indicates the DNA sequence variant is only present in one of the two genes contained in homologous chromosomes. Homozygous indicates the DNA Sequence Variant is present in both genes contained in homologous chromosomes. Hemizygous indicates the DNA Sequence Variant exists in the only single copy of a gene in a non-homologous chromosome (the male X and Y chromosome are non-homologous). Hemiplasmic indicates that the DNA Sequence Variant is present in some but not all of the copies of mitochondrial DNA. Homoplasmic indicates that the DNA Sequence Variant is present in all of the copies of mitochondrial DNA. LOINC Code: ([53034-5](http://loinc.org/53034-5))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:State.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:State.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:State.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="State"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:State.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Frequency"> - <path value="Extension.extension"/> - <sliceName value="Frequency"/> - <short value="Allele frequency"/> - <definition value="A physical quality which inheres to the allele by virtue of the number instances of the allele within a population. LOINC Code: ([81258-6](http://loinc.org/81258-6))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Frequency.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Frequency.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Frequency.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Frequency"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Frequency.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="decimal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAllele"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Allele"/> - <definition value="Allele information."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="Name of allele"/> - <definition value="An allele is one of a set of coexisting sequence variants of a gene ([SO:0001023](http://www.sequenceontology.org/browser/current_svn/term/SO:0001023)). This element is the common name for the allele. LOINC Code: ([48008-7](http://loinc.org/48008-7))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EBI-AlleleName"/> - </extension> - <strength value="preferred"/> - <description value="EMBL-EBI database of AlleleName."/> - <valueSet value="http://hl7.org/fhir/ValueSet/allelename"/> - </binding> - </element> - <element id="Extension.extension:State"> - <path value="Extension.extension"/> - <sliceName value="State"/> - <short value="The level of occurrence of a single DNA sequence variant within a set of chromosomes: Heteroplasmic / Homoplasmic / Homozygous / Heterozygous / Hemizygous"/> - <definition value="The level of occurrence of a single DNA Sequence Variant within a set of chromosomes. Heterozygous indicates the DNA sequence variant is only present in one of the two genes contained in homologous chromosomes. Homozygous indicates the DNA Sequence Variant is present in both genes contained in homologous chromosomes. Hemizygous indicates the DNA Sequence Variant exists in the only single copy of a gene in a non-homologous chromosome (the male X and Y chromosome are non-homologous). Hemiplasmic indicates that the DNA Sequence Variant is present in some but not all of the copies of mitochondrial DNA. Homoplasmic indicates that the DNA Sequence Variant is present in all of the copies of mitochondrial DNA. LOINC Code: ([53034-5](http://loinc.org/53034-5))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:State.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:State.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="State"/> - </element> - <element id="Extension.extension:State.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:Frequency"> - <path value="Extension.extension"/> - <sliceName value="Frequency"/> - <short value="Allele frequency"/> - <definition value="A physical quality which inheres to the allele by virtue of the number instances of the allele within a population. LOINC Code: ([81258-6](http://loinc.org/81258-6))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:Frequency.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Frequency.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Frequency"/> - </element> - <element id="Extension.extension:Frequency.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="decimal"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAllele"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-duration"/> - <resource> - <StructureDefinition> - <id value="allergyintolerance-duration"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-duration"/> - <version value="4.1.0"/> - <name value="duration"/> - <title value="duration"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The amount of time that the Adverse Reaction persisted."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="How long Manifestations persisted"/> - <definition value="The amount of time that the Adverse Reaction persisted."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-duration"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Duration"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="How long Manifestations persisted"/> - <definition value="The amount of time that the Adverse Reaction persisted."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-duration"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Duration"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/subscription-topic-url"/> - <resource> - <StructureDefinition> - <id value="subscription-topic-url"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/subscription-topic-url"/> - <version value="4.1.0"/> - <name value="subscription-topic-url"/> - <title value="Subscription Topic URL"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The URL for the Topic this notification relates to (local to server - not canonical)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.meta"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The URL for the Topic this notification relates to"/> - <definition value="The URL for the Topic this notification relates to (local to server - not canonical)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-topic-url"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="url"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The URL for the Topic this notification relates to"/> - <definition value="The URL for the Topic this notification relates to (local to server - not canonical)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-topic-url"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="url"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/rendering-style"/> - <resource> - <StructureDefinition> - <id value="rendering-style"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/rendering-style"/> - <version value="4.1.0"/> - <name value="style"/> - <status value="draft"/> - <date value="2014-04-23"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Identifies how the specified element should be rendered when displayed."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Html style value"/> - <definition value="Identifies how the specified element should be rendered when displayed."/> - <comment value="This extension would be equivalent to setting the HTML "style" attribute on the root element for the element containing the extension."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-style"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Html style value"/> - <definition value="Identifies how the specified element should be rendered when displayed."/> - <comment value="This extension would be equivalent to setting the HTML "style" attribute on the root element for the element containing the extension."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-style"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-table-name"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-table-name"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-table-name"/> - <version value="4.1.0"/> - <name value="table-name"/> - <title value="table name"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A name to use to show mappings of this type in the generated summary tables."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition.mapping"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Show mappings in the summary table with this name"/> - <definition value="A name to use to show mappings of this type in the generated summary tables."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-table-name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Show mappings in the summary table with this name"/> - <definition value="A name to use to show mappings of this type in the generated summary tables."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-table-name"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-equivalence"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-equivalence"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-equivalence"/> - <version value="4.1.0"/> - <name value="equivalence"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The level of equivalence between the element containing the mapping and the element mapped to."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.mapping"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="equivalent | equal | wider | subsumes | narrower | specializes | inexact | unmatched | disjoint"/> - <definition value="The level of equivalence between the element containing the mapping and the element mapped to."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-equivalence"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConceptMapEquivalence"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="The degree of equivalence between concepts."/> - <valueSet value="http://hl7.org/fhir/ValueSet/concept-map-equivalence|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="equivalent | equal | wider | subsumes | narrower | specializes | inexact | unmatched | disjoint"/> - <definition value="The level of equivalence between the element containing the mapping and the element mapped to."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-equivalence"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConceptMapEquivalence"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="The degree of equivalence between concepts."/> - <valueSet value="http://hl7.org/fhir/ValueSet/concept-map-equivalence|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertaintyType"/> - <resource> - <StructureDefinition> - <id value="iso21090-uncertaintyType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertaintyType"/> - <version value="4.1.0"/> - <name value="uncertaintyType"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A code specifying the type of probability distribution for the uncertainty."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Quantity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Probability Distribution Type for uncertainty"/> - <definition value="A code specifying the type of probability distribution for the uncertainty."/> - <comment value="This is only meaningful if there is also an uncertainty extension. If there is an uncertainty extension with no type, this means that the probability distribution type is unknown. In that case, the uncertainty has the meaning of an informal guess."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="PPD.distributionType"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertaintyType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ProbabilityDistributionType"/> - </extension> - <strength value="required"/> - <description value="Codes specifying the type of probability distribution."/> - <valueSet value="http://hl7.org/fhir/ValueSet/probability-distribution-type|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Probability Distribution Type for uncertainty"/> - <definition value="A code specifying the type of probability distribution for the uncertainty."/> - <comment value="This is only meaningful if there is also an uncertainty extension. If there is an uncertainty extension with no type, this means that the probability distribution type is unknown. In that case, the uncertainty has the meaning of an informal guess."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="PPD.distributionType"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertaintyType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ProbabilityDistributionType"/> - </extension> - <strength value="required"/> - <description value="Codes specifying the type of probability distribution."/> - <valueSet value="http://hl7.org/fhir/ValueSet/probability-distribution-type|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-signature"/> - <resource> - <StructureDefinition> - <id value="questionnaireresponse-signature"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-signature"/> - <version value="4.1.0"/> - <name value="signature"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Represents a wet or electronic signature for either the form overall or for the question or item it's associated with."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse"/> - </context> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse.item"/> - </context> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A signature attesting to the content"/> - <definition value="Represents a wet or electronic signature for either the form overall or for the question or item it's associated with."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-signature"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Signature"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A signature attesting to the content"/> - <definition value="Represents a wet or electronic signature for either the form overall or for the question or item it's associated with."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-signature"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Signature"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/humanname-assembly-order"/> - <resource> - <StructureDefinition> - <id value="humanname-assembly-order"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/humanname-assembly-order"/> - <version value="4.1.0"/> - <name value="assembly-order"/> - <status value="draft"/> - <date value="2015-11-22"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A code that represents the preferred display order of the components of this human name."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Preferred display order of name parts"/> - <definition value="A code that represents the preferred display order of the components of this human name."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-assembly-order"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="HumanNameAssemblyOrder"/> - </extension> - <strength value="required"/> - <description value="A code that represents the preferred display order of the components of a human name."/> - <valueSet value="http://hl7.org/fhir/ValueSet/name-assembly-order|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Preferred display order of name parts"/> - <definition value="A code that represents the preferred display order of the components of this human name."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-assembly-order"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="HumanNameAssemblyOrder"/> - </extension> - <strength value="required"/> - <description value="A code that represents the preferred display order of the components of a human name."/> - <valueSet value="http://hl7.org/fhir/ValueSet/name-assembly-order|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceFilter"/> - <resource> - <StructureDefinition> - <id value="questionnaire-referenceFilter"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceFilter"/> - <version value="4.1.0"/> - <name value="referenceFilter"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Identifies a filter to apply when looking up candidate answers for the question."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='reference'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Filter to apply when looking up references"/> - <definition value="Identifies a filter to apply when looking up candidate answers for the question."/> - <comment value="The filter may include $subj and/or $encounter which should be substituted by the implementer with the subject and/or encounter id relevant in the context in which the questionnaire is being populated."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceFilter"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Filter to apply when looking up references"/> - <definition value="Identifies a filter to apply when looking up candidate answers for the question."/> - <comment value="The filter may include $subj and/or $encounter which should be substituted by the implementer with the subject and/or encounter id relevant in the context in which the questionnaire is being populated."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceFilter"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-label"/> - <resource> - <StructureDefinition> - <id value="valueset-label"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-label"/> - <version value="4.1.0"/> - <name value="label"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include.concept"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet.expansion.contains"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. "(a)", "1.", etc."/> - <definition value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-label"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. "(a)", "1.", etc."/> - <definition value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-label"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/regex"/> - <resource> - <StructureDefinition> - <id value="regex"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/regex"/> - <version value="4.1.0"/> - <name value="regex"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="A regular expression that defines the syntax for the data element to be considered valid."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Regular expression pattern"/> - <definition value="A regular expression that defines the syntax for the data element to be considered valid."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/regex"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Regular expression pattern"/> - <definition value="A regular expression that defines the syntax for the data element to be considered valid."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/regex"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/http-response-header"/> - <resource> - <StructureDefinition> - <id value="http-response-header"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/http-response-header"/> - <version value="4.1.0"/> - <name value="http-response-header"/> - <title value="HTTP Response header"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="In a transaction, every single interaction can have multiple HTTP response headers returned as a result of the interaction."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.entry.response"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="HTTP header returned by the interaction"/> - <definition value="In a transaction, every single interaction can have multiple HTTP response headers returned as a result of the interaction."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/http-response-header"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="HTTP header returned by the interaction"/> - <definition value="In a transaction, every single interaction can have multiple HTTP response headers returned as a result of the interaction."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/http-response-header"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-representation"/> - <resource> - <StructureDefinition> - <id value="iso21090-EN-representation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-representation"/> - <version value="4.1.0"/> - <name value="EN-representation"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Name Representation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="ABC | IDE | SYL"/> - <definition value="Name Representation."/> - <comment value="The transcription of the name - how it is represented (for e.g. Japanese names)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ENXP.use"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-representation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="NameRepresentationUse"/> - </extension> - <strength value="required"/> - <description value="A set of codes for each different representation of a name."/> - <valueSet value="http://hl7.org/fhir/ValueSet/name-v3-representation|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="ABC | IDE | SYL"/> - <definition value="Name Representation."/> - <comment value="The transcription of the name - how it is represented (for e.g. Japanese names)."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="ENXP.use"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-representation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="NameRepresentationUse"/> - </extension> - <strength value="required"/> - <description value="A set of codes for each different representation of a name."/> - <valueSet value="http://hl7.org/fhir/ValueSet/name-v3-representation|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-prohibited"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement2-prohibited"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-prohibited"/> - <version value="4.1.0"/> - <name value="prohibited"/> - <title value="Conformance prohibition"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="If set to true, indicates that support for the specified behavior would make a system non-conformant with the specification."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.resource.interaction"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.resource.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.operation"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.interaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Functionality not allowed"/> - <definition value="If set to true, indicates that support for the specified behavior would make a system non-conformant with the specification."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="true"/> - <isModifierReason value="If true, this extension inverts the meaning of the conformance statement"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-prohibited"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Functionality not allowed"/> - <definition value="If set to true, indicates that support for the specified behavior would make a system non-conformant with the specification."/> - <min value="0"/> - <max value="1"/> - <isModifier value="true"/> - <isModifierReason value="If true, this extension inverts the meaning of the conformance statement"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-prohibited"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionExclusive"/> - <resource> - <StructureDefinition> - <id value="questionnaire-optionExclusive"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionExclusive"/> - <version value="4.1.0"/> - <name value="optionExclusive"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="If true, indicates that if this answerOption is selected, no other possible answers may be selected, even if the item is a repeating question."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item.answerOption"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Option is exclusive"/> - <definition value="If true, indicates that if this answerOption is selected, no other possible answers may be selected, even if the item is a repeating question."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionExclusive"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Option is exclusive"/> - <definition value="If true, indicates that if this answerOption is selected, no other possible answers may be selected, even if the item is a repeating question."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionExclusive"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-keyWord"/> - <resource> - <StructureDefinition> - <id value="codesystem-keyWord"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-keyWord"/> - <version value="4.1.0"/> - <name value="keyWord"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Word or words used in an information retrieval system to indicate the content of the value set."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Descriptors and key terms for search"/> - <definition value="Word or words used in an information retrieval system to indicate the content of the value set."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-keyWord"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Descriptors and key terms for search"/> - <definition value="Word or words used in an information retrieval system to indicate the content of the value set."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-keyWord"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-careOf"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-careOf"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-careOf"/> - <version value="4.1.0"/> - <name value="ADXP-careOf"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The name of the party who will take receipt at the specified address, and will take on responsibility for ensuring delivery to the target recipient."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="careOf"/> - <definition value="The name of the party who will take receipt at the specified address, and will take on responsibility for ensuring delivery to the target recipient."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=CAR]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-careOf"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="careOf"/> - <definition value="The name of the party who will take receipt at the specified address, and will take on responsibility for ensuring delivery to the target recipient."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=CAR]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-careOf"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/timing-exact"/> - <resource> - <StructureDefinition> - <id value="timing-exact"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/timing-exact"/> - <version value="4.1.0"/> - <name value="exact"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - MnM WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/MnM"/> - </telecom> - </contact> - <description value="If true, indicates that the specified times, frequencies, periods are expected to be adhered to as precisely as possible. If false, indicates that a typical degree of variability based on institutional and/or patient convenience is acceptable."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Timing.repeat"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether specified times must be followed as closely as possible"/> - <definition value="If true, indicates that the specified times, frequencies, periods are expected to be adhered to as precisely as possible. If false, indicates that a typical degree of variability based on institutional and/or patient convenience is acceptable."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="GTS.IsFlexible"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/timing-exact"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether specified times must be followed as closely as possible"/> - <definition value="If true, indicates that the specified times, frequencies, periods are expected to be adhered to as precisely as possible. If false, indicates that a typical degree of variability based on institutional and/or patient convenience is acceptable."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="GTS.IsFlexible"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/timing-exact"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-workflowStatus"/> - <resource> - <StructureDefinition> - <id value="codesystem-workflowStatus"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-workflowStatus"/> - <version value="4.1.0"/> - <name value="workflowStatus"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Workflow Status is used to represent details of the value set development process while the value set has an Activity Status of Preliminary. The development of a value set often follows a formal workflow process from initiation to completion, and this element carries the state variable for this state machine. The assumption is that when first created a value set would have a workflow state of Draft. Additional workflow states may be used."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicates the state of development of the value set"/> - <definition value="Workflow Status is used to represent details of the value set development process while the value set has an Activity Status of Preliminary. The development of a value set often follows a formal workflow process from initiation to completion, and this element carries the state variable for this state machine. The assumption is that when first created a value set would have a workflow state of Draft. Additional workflow states may be used."/> - <comment value="The values that this element may assume include phrases that capture various stages in review and approval. In addition to the minimum of ???Draft???, these include ???Proposed???, ???Approved???, ???Ready to Publish???. There may be additional states defined by different developers. This is an optional element because the use of Activity Status ???Preliminary??? may be sufficient for some implementations."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-workflowStatus"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicates the state of development of the value set"/> - <definition value="Workflow Status is used to represent details of the value set development process while the value set has an Activity Status of Preliminary. The development of a value set often follows a formal workflow process from initiation to completion, and this element carries the state variable for this state machine. The assumption is that when first created a value set would have a workflow state of Draft. Additional workflow states may be used."/> - <comment value="The values that this element may assume include phrases that capture various stages in review and approval. In addition to the minimum of ???Draft???, these include ???Proposed???, ???Approved???, ???Ready to Publish???. There may be additional states defined by different developers. This is an optional element because the use of Activity Status ???Preliminary??? may be sufficient for some implementations."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-workflowStatus"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/condition-ruledOut"/> - <resource> - <StructureDefinition> - <id value="condition-ruledOut"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/condition-ruledOut"/> - <version value="4.1.0"/> - <name value="ruledOut"/> - <title value="ruledOut"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Identifies what potential diagnoses have been ruled out for this condition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Conditions ruled out for this condition"/> - <definition value="Identifies what potential diagnoses have been ruled out for this condition."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-ruledOut"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Conditions ruled out for this condition"/> - <definition value="Identifies what potential diagnoses have been ruled out for this condition."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-ruledOut"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-cdsHooksEndpoint"/> - <resource> - <StructureDefinition> - <id value="cqf-cdsHooksEndpoint"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-cdsHooksEndpoint"/> - <version value="4.1.0"/> - <name value="cdsHooksEndpoint"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="Specifies the URI of a CDS Hooks service that uses this PlanDefinition as its implementation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="PlanDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Surface this ECA Rule here"/> - <definition value="Specifies the URI of a CDS Hooks service that uses this PlanDefinition as its implementation."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-cdsHooksEndpoint"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Surface this ECA Rule here"/> - <definition value="Specifies the URI of a CDS Hooks service that uses this PlanDefinition as its implementation."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-cdsHooksEndpoint"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-sliderStepValue"/> - <resource> - <StructureDefinition> - <id value="questionnaire-sliderStepValue"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-sliderStepValue"/> - <version value="4.1.0"/> - <name value="sliderStepValue"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="For slider-based controls, indicates the step size to use when toggling the control up or down."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='integer'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Increment value for slider"/> - <definition value="For slider-based controls, indicates the step size to use when toggling the control up or down."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-sliderStepValue"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Increment value for slider"/> - <definition value="For slider-based controls, indicates the step size to use when toggling the control up or down."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-sliderStepValue"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-baseType"/> - <resource> - <StructureDefinition> - <id value="questionnaire-baseType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-baseType"/> - <version value="4.1.0"/> - <name value="baseType"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="This identifies the underlying type in a profile, when a questionnaire is generated from a profile."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Base Type for answer"/> - <definition value="This identifies the underlying type in a profile, when a questionnaire is generated from a profile."/> - <comment value="The extension may assist a questionnaire renderer to tune the UI, and it guides a QuestionnaireResponse processor when generating resources from the responses."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-baseType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DataType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="A version specific list of the data types defined by the FHIR specification for use as an element type (any of the FHIR defined data types)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/data-types|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Base Type for answer"/> - <definition value="This identifies the underlying type in a profile, when a questionnaire is generated from a profile."/> - <comment value="The extension may assist a questionnaire renderer to tune the UI, and it guides a QuestionnaireResponse processor when generating resources from the responses."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-baseType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DataType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="A version specific list of the data types defined by the FHIR specification for use as an element type (any of the FHIR defined data types)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/data-types|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/device-implantStatus"/> - <resource> - <StructureDefinition> - <id value="device-implantStatus"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/device-implantStatus"/> - <version value="4.1.0"/> - <name value="implantStatus"/> - <title value="Status of Implantable Devices"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Codes to represent the functional status of a device implanted in a patient. Both overall device status and an implant status need to be considered. The implant status should only be used when the [device status](device-definitions.html#Device.status) is `active `."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Device"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Implant Status"/> - <definition value="Codes to represent the functional status of a device implanted in a patient. Both overall device status and an implant status need to be considered. The implant status should only be used when the [device status](device-definitions.html#Device.status) is `active `."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/device-implantStatus"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Implant Status"/> - </extension> - <strength value="required"/> - <description value="A set codes that define the functional status of an implanted device."/> - <valueSet value="http://hl7.org/fhir/ValueSet/implantStatus|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Implant Status"/> - <definition value="Codes to represent the functional status of a device implanted in a patient. Both overall device status and an implant status need to be considered. The implant status should only be used when the [device status](device-definitions.html#Device.status) is `active `."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/device-implantStatus"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Implant Status"/> - </extension> - <strength value="required"/> - <description value="A set codes that define the functional status of an implanted device."/> - <valueSet value="http://hl7.org/fhir/ValueSet/implantStatus|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-category"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-category"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-category"/> - <version value="4.1.0"/> - <name value="category"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The category under which the resource type is presented on the official resource list."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Category from official resource list"/> - <definition value="The category under which the resource type is presented on the official resource list."/> - <comment value="To allow tools to follow the same structure for user convenience."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-category"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Category from official resource list"/> - <definition value="The category under which the resource type is presented on the official resource list."/> - <comment value="To allow tools to follow the same structure for user convenience."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-category"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-precinct"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-precinct"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-precinct"/> - <version value="4.1.0"/> - <name value="ADXP-precinct"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A subsection of a municipality."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="precinct"/> - <definition value="A subsection of a municipality."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=PRE]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-precinct"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="precinct"/> - <definition value="A subsection of a municipality."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=PRE]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-precinct"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/contactpoint-country"/> - <resource> - <StructureDefinition> - <id value="contactpoint-country"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/contactpoint-country"/> - <version value="4.1.0"/> - <name value="country"/> - <title value="Country Code"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The country code as defined by the ITU. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ContactPoint"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Country code as defined by the ITU"/> - <definition value="The country code as defined by the ITU. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-country"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Country code as defined by the ITU"/> - <definition value="The country code as defined by the ITU. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-country"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-nationality"/> - <resource> - <StructureDefinition> - <id value="patient-nationality"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-nationality"/> - <version value="4.1.0"/> - <name value="nationality"/> - <title value="nationality"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The nationality of the patient."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Nationality"/> - <definition value="The nationality of the patient."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Nationality Code"/> - <definition value="Code representing nationality of patient."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:period"> - <path value="Extension.extension"/> - <sliceName value="period"/> - <short value="Nationality Period"/> - <definition value="Period when nationality was effective."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:period.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:period.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:period.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="period"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:period.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Period"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-nationality"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Nationality"/> - <definition value="The nationality of the patient."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Nationality Code"/> - <definition value="Code representing nationality of patient."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:period"> - <path value="Extension.extension"/> - <sliceName value="period"/> - <short value="Nationality Period"/> - <definition value="Period when nationality was effective."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:period.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:period.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="period"/> - </element> - <element id="Extension.extension:period.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Period"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-nationality"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/contactpoint-area"/> - <resource> - <StructureDefinition> - <id value="contactpoint-area"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/contactpoint-area"/> - <version value="4.1.0"/> - <name value="area"/> - <title value="Area Code"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The area/zone/city code that, in some areas, may be omitted when dialing locally within the zone. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ContactPoint"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Area/zone/city code"/> - <definition value="The area/zone/city code that, in some areas, may be omitted when dialing locally within the zone. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-area"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Area/zone/city code"/> - <definition value="The area/zone/city code that, in some areas, may be omitted when dialing locally within the zone. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-area"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival"/> - <resource> - <StructureDefinition> - <id value="encounter-modeOfArrival"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival"/> - <version value="4.1.0"/> - <name value="modeOfArrival"/> - <title value="modeOfArrival"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Identifies whether a patient arrives at the reporting facility via ambulance and the type of ambulance that was used."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Encounter"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The method of arrival of the patient into the facility"/> - <definition value="Identifies whether a patient arrives at the reporting facility via ambulance and the type of ambulance that was used."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="modeOfArrival"/> - </extension> - <strength value="example"/> - <description value="The method that the patient arrived at the facility."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v2-0430"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The method of arrival of the patient into the facility"/> - <definition value="Identifies whether a patient arrives at the reporting facility via ambulance and the type of ambulance that was used."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/encounter-modeOfArrival"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="modeOfArrival"/> - </extension> - <strength value="example"/> - <description value="The method that the patient arrived at the facility."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v2-0430"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix"/> - <resource> - <StructureDefinition> - <id value="questionnaire-optionPrefix"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix"/> - <version value="4.1.0"/> - <name value="optionPrefix"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item.answerOption"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. "(a)", "1.", etc."/> - <definition value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. "(a)", "1.", etc."/> - <definition value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-optionPrefix"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/encounter-reasonCancelled"/> - <resource> - <StructureDefinition> - <id value="encounter-reasonCancelled"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/encounter-reasonCancelled"/> - <version value="4.1.0"/> - <name value="reasonCancelled"/> - <title value="reasonCancelled"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="If the encountered was cancelled after it was planned, why? Applies only if the status is cancelled."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Encounter"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Explanation for cancellation"/> - <definition value="If the encountered was cancelled after it was planned, why? Applies only if the status is cancelled."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/encounter-reasonCancelled"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Explanation for cancellation"/> - <definition value="If the encountered was cancelled after it was planned, why? Applies only if the status is cancelled."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/encounter-reasonCancelled"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/flag-detail"/> - <resource> - <StructureDefinition> - <id value="flag-detail"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/flag-detail"/> - <version value="4.1.0"/> - <name value="detail"/> - <title value="Flag details"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - Patient Care WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Points to the Observation, AllergyIntolerance or other record that provides additional supporting information about this flag."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Flag"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Resource with details for flag"/> - <definition value="Points to the Observation, AllergyIntolerance or other record that provides additional supporting information about this flag."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/flag-detail"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Resource with details for flag"/> - <definition value="Points to the Observation, AllergyIntolerance or other record that provides additional supporting information about this flag."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/flag-detail"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/maxDecimalPlaces"/> - <resource> - <StructureDefinition> - <id value="maxDecimalPlaces"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/maxDecimalPlaces"/> - <version value="4.1.0"/> - <name value="maxDecimalPlaces"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Identifies the maximum number of decimal places that may be specified for the data element."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Maximum digits after decimal"/> - <definition value="Identifies the maximum number of decimal places that may be specified for the data element."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/maxDecimalPlaces"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Maximum digits after decimal"/> - <definition value="Identifies the maximum number of decimal places that may be specified for the data element."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/maxDecimalPlaces"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/devicerequest-patientInstruction"/> - <resource> - <StructureDefinition> - <id value="devicerequest-patientInstruction"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/devicerequest-patientInstruction"/> - <version value="4.1.0"/> - <name value="patientInstruction"/> - <title value="Directions"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Simple concise instructions to be read by the patient. For example “twice a day” rather than “BID.”."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DeviceRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Patient Friendly Insructions"/> - <definition value="Simple concise instructions to be read by the patient. For example “twice a day” rather than “BID.”."/> - <comment value="Should use only common terms and sentences. Use of unfamiliar words and jargon should be avoided."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:lang"> - <path value="Extension.extension"/> - <sliceName value="lang"/> - <short value="Language"/> - <definition value="Code for Language."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:lang.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:lang.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:lang.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="lang"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:lang.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:content"> - <path value="Extension.extension"/> - <sliceName value="content"/> - <short value="Text"/> - <definition value="The actual text containing the instructions."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:content.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:content.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:content.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="content"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:content.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/devicerequest-patientInstruction"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Patient Friendly Insructions"/> - <definition value="Simple concise instructions to be read by the patient. For example “twice a day” rather than “BID.”."/> - <comment value="Should use only common terms and sentences. Use of unfamiliar words and jargon should be avoided."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:lang"> - <path value="Extension.extension"/> - <sliceName value="lang"/> - <short value="Language"/> - <definition value="Code for Language."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:lang.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:lang.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="lang"/> - </element> - <element id="Extension.extension:lang.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - </element> - <element id="Extension.extension:content"> - <path value="Extension.extension"/> - <sliceName value="content"/> - <short value="Text"/> - <definition value="The actual text containing the instructions."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:content.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:content.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="content"/> - </element> - <element id="Extension.extension:content.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/devicerequest-patientInstruction"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceProfile"/> - <resource> - <StructureDefinition> - <id value="questionnaire-referenceProfile"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceProfile"/> - <version value="4.1.0"/> - <name value="referenceProfile"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Where the type for a question is "Reference", indicates a profile that the resource instances pointed to in answers to this question must be valid against."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='reference'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Allowed profile for reference"/> - <definition value="Where the type for a question is "Reference", indicates a profile that the resource instances pointed to in answers to this question must be valid against."/> - <comment value="If multiple profiles are present, then the resource must be valid against at least one of them."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceProfile"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/StructureDefinition"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Allowed profile for reference"/> - <definition value="Where the type for a question is "Reference", indicates a profile that the resource instances pointed to in answers to this question must be valid against."/> - <comment value="If multiple profiles are present, then the resource must be valid against at least one of them."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceProfile"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/StructureDefinition"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-workflowStatus"/> - <resource> - <StructureDefinition> - <id value="valueset-workflowStatus"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-workflowStatus"/> - <version value="4.1.0"/> - <name value="workflowStatus"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Workflow Status is used to represent details of the value set development process while in a single Activity Status."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicates the state of development of the value set"/> - <definition value="Workflow Status is used to represent details of the value set development process while in a single Activity Status."/> - <comment value="The values that are traditionally used for this element while the Value Set Definition has an Activity Status of Preliminary are assumed to include phrases that capture various stages in review and approval. It is expected that this would be used to manage maintenance activities, but that a terminology service would not be expected to expose this information. Different services might adopt different workflow status values reflecting their local practices."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-workflowStatus"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicates the state of development of the value set"/> - <definition value="Workflow Status is used to represent details of the value set development process while in a single Activity Status."/> - <comment value="The values that are traditionally used for this element while the Value Set Definition has an Activity Status of Preliminary are assumed to include phrases that capture various stages in review and approval. It is expected that this would be used to manage maintenance activities, but that a terminology service would not be expected to expose this information. Different services might adopt different workflow status values reflecting their local practices."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-workflowStatus"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-maxValueSet"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"/> - <version value="4.1.0"/> - <name value="maxValueSet"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The maximum allowable value set, for use when the binding strength is 'extensible' or 'preferred'. This value set is the value set from which additional codes can be taken from. This defines a 'required' binding over the top of the extensible binding."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.binding"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Maximum Value Set (when strength = extensible)"/> - <definition value="The maximum allowable value set, for use when the binding strength is 'extensible' or 'preferred'. This value set is the value set from which additional codes can be taken from. This defines a 'required' binding over the top of the extensible binding."/> - <comment value="Typically, this will be an entire code system, e.g. SNOMED CT. The maximum binding needs to include all the codes in the extensible or preferred binding."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Maximum Value Set (when strength = extensible)"/> - <definition value="The maximum allowable value set, for use when the binding strength is 'extensible' or 'preferred'. This value set is the value set from which additional codes can be taken from. This defines a 'required' binding over the top of the extensible binding."/> - <comment value="Typically, this will be an entire code system, e.g. SNOMED CT. The maximum binding needs to include all the codes in the extensible or preferred binding."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-reference"/> - <resource> - <StructureDefinition> - <id value="valueset-reference"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-reference"/> - <version value="4.1.0"/> - <name value="reference"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A logical reference (e.g. a reference to ValueSet.url) that identifies the value set/version that identifies the set of possible coded values this coding was chosen from or constrained by."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Coding"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Url of Value set the code was chosen from"/> - <definition value="A logical reference (e.g. a reference to ValueSet.url) that identifies the value set/version that identifies the set of possible coded values this coding was chosen from or constrained by."/> - <comment value="If this extension is used with an [extensible binding](terminologies.html#extensible), and the concept comes from outside the bound valueset, the value set SHALL be different from the bound valueset."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="CWE."/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="CD.valueSet/CD.valueSetVersion"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-reference"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Url of Value set the code was chosen from"/> - <definition value="A logical reference (e.g. a reference to ValueSet.url) that identifies the value set/version that identifies the set of possible coded values this coding was chosen from or constrained by."/> - <comment value="If this extension is used with an [extensible binding](terminologies.html#extensible), and the concept comes from outside the bound valueset, the value set SHALL be different from the bound valueset."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="CWE."/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="CD.valueSet/CD.valueSetVersion"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-reference"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/entryFormat"/> - <resource> - <StructureDefinition> - <id value="entryFormat"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/entryFormat"/> - <version value="4.1.0"/> - <name value="entryFormat"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Additional instructions for the user to guide their input (i.e. a human readable version of a regular expression like "nnn-nnn-nnn"). In most UIs this is the placeholder (or 'ghost') text placed directly inside the edit controls and that disappear when the control gets the focus."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="User prompt for format"/> - <definition value="Additional instructions for the user to guide their input (i.e. a human readable version of a regular expression like "nnn-nnn-nnn"). In most UIs this is the placeholder (or 'ghost') text placed directly inside the edit controls and that disappear when the control gets the focus."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/entryFormat"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="User prompt for format"/> - <definition value="Additional instructions for the user to guide their input (i.e. a human readable version of a regular expression like "nnn-nnn-nnn"). In most UIs this is the placeholder (or 'ghost') text placed directly inside the edit controls and that disappear when the control gets the focus."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/entryFormat"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/organization-preferredContact"/> - <resource> - <StructureDefinition> - <id value="organization-preferredContact"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/organization-preferredContact"/> - <version value="4.1.0"/> - <name value="preferredContact"/> - <title value="Preferred Contact"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="This Contact is the preferred contact at this organization for the purpose of the contact There can be multiple contacts on an Organizations record with this value set to true, but these should all have different purpose values."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Organization.contact"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="This Contact is the preferred contact at this organization for the purpose of the contact There can be multiple contacts on an Organizations record with this value set to true, but these should all have different purpose values."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/organization-preferredContact"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="This Contact is the preferred contact at this organization for the purpose of the contact There can be multiple contacts on an Organizations record with this value set to true, but these should all have different purpose values."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/organization-preferredContact"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilities"/> - <resource> - <StructureDefinition> - <id value="capabilities"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://fhir-registry.smarthealthit.org/StructureDefinition/capabilities"/> - <version value="4.1.0"/> - <name value="capabilities"/> - <status value="active"/> - <date value="2018-02-15"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="A set of codes that defines what the server is capable of."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.security"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Server Capabilities"/> - <definition value="A set of codes that defines what the server is capable of."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://fhir-registry.smarthealthit.org/StructureDefinition/capabilities"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SmartCapabilities"/> - </extension> - <strength value="required"/> - <description value="Codes that define what the server is capable of."/> - <valueSet value="http://hl7.org/fhir/ValueSet/smart-capabilities|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Server Capabilities"/> - <definition value="A set of codes that defines what the server is capable of."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://fhir-registry.smarthealthit.org/StructureDefinition/capabilities"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SmartCapabilities"/> - </extension> - <strength value="required"/> - <description value="Codes that define what the server is capable of."/> - <valueSet value="http://hl7.org/fhir/ValueSet/smart-capabilities|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-map"/> - <resource> - <StructureDefinition> - <id value="valueset-map"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-map"/> - <version value="4.1.0"/> - <name value="map"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A reference to a concept map that is relevant for the interpretation of this value set."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A concept map relevant to interpret this value set"/> - <definition value="A reference to a concept map that is relevant for the interpretation of this value set."/> - <comment value="One use of this extension is to use it to include a partial concept map inside an expansion, only containing maps for the concepts included in this particular expansion."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-map"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ConceptMap"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A concept map relevant to interpret this value set"/> - <definition value="A reference to a concept map that is relevant for the interpretation of this value set."/> - <comment value="One use of this extension is to use it to include a partial concept map inside an expansion, only containing maps for the concepts included in this particular expansion."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-map"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ConceptMap"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-Accession"/> - <resource> - <StructureDefinition> - <id value="auditevent-Accession"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-Accession"/> - <version value="4.1.0"/> - <name value="Accession"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="An Accession Number associated with this participant object."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Accession Number"/> - <definition value="An Accession Number associated with this participant object."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="Accession"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Accession"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Identifier"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Accession Number"/> - <definition value="An Accession Number associated with this participant object."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="dicom"/> - <map value="Accession"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Accession"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Identifier"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-selector"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-selector"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-selector"/> - <version value="4.1.0"/> - <name value="selector"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A FHIRPath statement that defines whether an element is in the slice."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="FHIRPath that defines the selection criteria for a slice"/> - <definition value="A FHIRPath statement that defines whether an element is in the slice."/> - <comment value="This extension can only appear on element definitions that are part of a set of slices, and not on the slicing definition itself. If the selector appears in the presence of nominated slices discriminators, then the slicing defined by the discriminator(s) and the selector on each slice must agree. In the absence of any nominated discriminators, then an element is allowed to be in multiple slices."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-selector"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="FHIRPath that defines the selection criteria for a slice"/> - <definition value="A FHIRPath statement that defines whether an element is in the slice."/> - <comment value="This extension can only appear on element definitions that are part of a set of slices, and not on the slicing definition itself. If the selector appears in the presence of nominated slices discriminators, then the slicing defined by the discriminator(s) and the selector on each slice must agree. In the absence of any nominated discriminators, then an element is allowed to be in multiple slices."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-selector"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/coding-sctdescid"/> - <resource> - <StructureDefinition> - <id value="coding-sctdescid"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/coding-sctdescid"/> - <version value="4.1.0"/> - <name value="sctdescid"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The SNOMED CT Description ID for the display."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Coding"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="SNOMED CT Description ID"/> - <definition value="The SNOMED CT Description ID for the display."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/coding-sctdescid"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="id"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="SNOMED CT Description ID"/> - <definition value="The SNOMED CT Description ID for the display."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/coding-sctdescid"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="id"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-reasonRefuted"/> - <resource> - <StructureDefinition> - <id value="allergyintolerance-reasonRefuted"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-reasonRefuted"/> - <version value="4.1.0"/> - <name value="reasonRefuted"/> - <title value="reasonRefuted"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A code capturing the explanation of why the allergy or intolerance has been refuted. Should be specified only if the status is refuted."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Explanation associated with refuted status"/> - <definition value="A code capturing the explanation of why the allergy or intolerance has been refuted. Should be specified only if the status is refuted."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-reasonRefuted"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Explanation associated with refuted status"/> - <definition value="A code capturing the explanation of why the allergy or intolerance has been refuted. Should be specified only if the status is refuted."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-reasonRefuted"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-SC-coding"/> - <resource> - <StructureDefinition> - <id value="iso21090-SC-coding"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-SC-coding"/> - <version value="4.1.0"/> - <name value="SC-coding"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Provides a coded expression for the content represented in a string."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="string"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="code for string"/> - <definition value="Provides a coded expression for the content represented in a string."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="SC.code"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-SC-coding"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StringCoding"/> - </extension> - <strength value="example"/> - <description value="A coded representation for a string. Could be codes for country in a country address part, codes for prefixes in a name part, etc."/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="code for string"/> - <definition value="Provides a coded expression for the content represented in a string."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="SC.code"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-SC-coding"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StringCoding"/> - </extension> - <strength value="example"/> - <description value="A coded representation for a string. Could be codes for country in a country address part, codes for prefixes in a name part, etc."/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/display"/> - <resource> - <StructureDefinition> - <id value="display"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/display"/> - <version value="4.1.0"/> - <name value="Display Name"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="The title or other name to display when referencing a resource by canonical URL."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="canonical"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Display name for canonical reference"/> - <definition value="The title or other name to display when referencing a resource by canonical URL."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/display"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Display name for canonical reference"/> - <definition value="The title or other name to display when referencing a resource by canonical URL."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/display"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-label"/> - <resource> - <StructureDefinition> - <id value="codesystem-label"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-label"/> - <version value="4.1.0"/> - <name value="label"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. "(a)", "1.", etc."/> - <definition value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-label"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. "(a)", "1.", etc."/> - <definition value="The label to list in front of a code when presenting a list of possible values in a questionnaire-like fashion."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-label"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-trusted-expansion"/> - <resource> - <StructureDefinition> - <id value="valueset-trusted-expansion"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-trusted-expansion"/> - <version value="4.1.0"/> - <name value="trusted-expansion"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Indicates an authoritative source for performing value set expansions."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to a trusted expansion"/> - <definition value="Indicates an authoritative source for performing value set expansions."/> - <comment value="If the designated "authoritative source" (as specified in the valueset-authoritativeSource extension, if present) is unable to provide a valid expansion, this extension indicates an alternate authoritative source where the value set expansion may be obtained."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-trusted-expansion"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to a trusted expansion"/> - <definition value="Indicates an authoritative source for performing value set expansions."/> - <comment value="If the designated "authoritative source" (as specified in the valueset-authoritativeSource extension, if present) is unable to provide a valid expansion, this extension indicates an alternate authoritative source where the value set expansion may be obtained."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-trusted-expansion"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-use"/> - <resource> - <StructureDefinition> - <id value="iso21090-EN-use"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-use"/> - <version value="4.1.0"/> - <name value="EN-use"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A set of codes advising a system or user which name in a set of names to select for a given purpose."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A | ANON | I | P | R | C | M | ABC | IDE | SYL | OLD | DN | OR | PHON | SRCH | T"/> - <definition value="A set of codes advising a system or user which name in a set of names to select for a given purpose."/> - <comment value="A name without specific use code might be a default name useful for any purpose, but a name with a specific use code would be preferred for that respective purpose."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ENXP.use"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-use"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EntityNameUse"/> - </extension> - <strength value="required"/> - <description value="A set of codes advising a system or user which name in a set of names to select for a given purpose."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-EntityNameUseR2|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A | ANON | I | P | R | C | M | ABC | IDE | SYL | OLD | DN | OR | PHON | SRCH | T"/> - <definition value="A set of codes advising a system or user which name in a set of names to select for a given purpose."/> - <comment value="A name without specific use code might be a default name useful for any purpose, but a name with a specific use code would be preferred for that respective purpose."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="ENXP.use"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-use"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EntityNameUse"/> - </extension> - <strength value="required"/> - <description value="A set of codes advising a system or user which name in a set of names to select for a given purpose."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-EntityNameUseR2|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-expirationDate"/> - <resource> - <StructureDefinition> - <id value="valueset-expirationDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-expirationDate"/> - <version value="4.1.0"/> - <name value="expirationDate"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The date when the value set version is no longer expected to be used to create new content. This is the first date-time when the value set version becomes Inactive, so this value SHALL present on all Inactive value set versions. The start Date_time is expected to be as of 0001 UTC of the Expiration Date."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version should no longer be used"/> - <definition value="The date when the value set version is no longer expected to be used to create new content. This is the first date-time when the value set version becomes Inactive, so this value SHALL present on all Inactive value set versions. The start Date_time is expected to be as of 0001 UTC of the Expiration Date."/> - <comment value="Upon reaching the Expiration Date, the value set Activity Status should be consdiered as inactive. An Inactive value set version may no longer be used to create new content, but it may be used to evaluate content created prior to the Expiration Date."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expirationDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version should no longer be used"/> - <definition value="The date when the value set version is no longer expected to be used to create new content. This is the first date-time when the value set version becomes Inactive, so this value SHALL present on all Inactive value set versions. The start Date_time is expected to be as of 0001 UTC of the Expiration Date."/> - <comment value="Upon reaching the Expiration Date, the value set Activity Status should be consdiered as inactive. An Inactive value set version may no longer be used to create new content, but it may be used to evaluate content created prior to the Expiration Date."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expirationDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-reasonCode"/> - <resource> - <StructureDefinition> - <id value="workflow-reasonCode"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-reasonCode"/> - <version value="4.1.0"/> - <name value="reasonCode"/> - <title value="Reason Code"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Describes why the event occurred in coded or textual form."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Why was event performed?"/> - <definition value="Describes why the event occurred in coded or textual form."/> - <comment value="For free text (uncoded data) use reasonCode.text."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.reasonCode"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="EVN.4 or by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".reasonCode"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-reasonCode"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EventReason"/> - </extension> - <strength value="example"/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-cause"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Why was event performed?"/> - <definition value="Describes why the event occurred in coded or textual form."/> - <comment value="For free text (uncoded data) use reasonCode.text."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.reasonCode"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="EVN.4 or by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".reasonCode"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-reasonCode"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EventReason"/> - </extension> - <strength value="example"/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-cause"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-relatedArtifact"/> - <resource> - <StructureDefinition> - <id value="workflow-relatedArtifact"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-relatedArtifact"/> - <version value="4.1.0"/> - <name value="relatedArtifact"/> - <title value="Related Artifact"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Documentation or 'knowledge artifacts' relevant to the base resource such as citations, supporting evidence, documentation of processes, caveats around testing methodology."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Documentation relevant to the 'parent' resource"/> - <definition value="Documentation or 'knowledge artifacts' relevant to the base resource such as citations, supporting evidence, documentation of processes, caveats around testing methodology."/> - <comment value="Note that in contrast this extension, the [supportingInfo extension](extension-workflow-supportinginfo.html) references other resources *from the patient record* that were used in creating the resource."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-relatedArtifact"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="RelatedArtifact"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Documentation relevant to the 'parent' resource"/> - <definition value="Documentation or 'knowledge artifacts' relevant to the base resource such as citations, supporting evidence, documentation of processes, caveats around testing methodology."/> - <comment value="Note that in contrast this extension, the [supportingInfo extension](extension-workflow-supportinginfo.html) references other resources *from the patient record* that were used in creating the resource."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-relatedArtifact"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="RelatedArtifact"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-concept-comments"/> - <resource> - <StructureDefinition> - <id value="codesystem-concept-comments"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-concept-comments"/> - <version value="4.1.0"/> - <name value="concept-comments"/> - <title value="Comment"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A comment that explains how this code is used in this context (where the value set is expected to be used)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Comment about the use of this code in this context"/> - <definition value="A comment that explains how this code is used in this context (where the value set is expected to be used)."/> - <comment value="This is used in various FHIR value sets to make comments on how particular codes are used when the formal definition is a little abstract or vague, but it's not clear whether it belongs in the actual value set resource."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-concept-comments"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Comment about the use of this code in this context"/> - <definition value="A comment that explains how this code is used in this context (where the value set is expected to be used)."/> - <comment value="This is used in various FHIR value sets to make comments on how particular codes are used when the formal definition is a little abstract or vague, but it's not clear whether it belongs in the actual value set resource."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-concept-comments"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-codegen-super"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-codegen-super"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-codegen-super"/> - <version value="4.1.0"/> - <name value="codegen-super"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A specific instruction to use an intermediate parent class when generating code for the classes."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition.baseDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Use a different base when generating code"/> - <definition value="A specific instruction to use an intermediate parent class when generating code for the classes."/> - <comment value="This can be useful when setting up special common ancestor classes for shared code. At present the only use for this is for the special MetadataResource pattern."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-codegen-super"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Use a different base when generating code"/> - <definition value="A specific instruction to use an intermediate parent class when generating code for the classes."/> - <comment value="This can be useful when setting up special common ancestor classes for shared code. At present the only use for this is for the special MetadataResource pattern."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-codegen-super"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-timeOffset"/> - <resource> - <StructureDefinition> - <id value="observation-timeOffset"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-timeOffset"/> - <version value="4.1.0"/> - <name value="timeOffset"/> - <title value="Time-offset"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="A specific offset time in milliseconds from the stated time in the Observation.appliesDateTime to allow for representation of sequential recording of sampled data from the same lead or data stream. For example, an ECG recorder may record sequentially 3 leads four time to receive 12-lead ECG, see [ISO 22077](https://www.iso.org/obp/ui/#iso:std:61871:en)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation.component"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Time Offset for interlacing"/> - <definition value="A specific offset time in milliseconds from the stated time in the Observation.appliesDateTime to allow for representation of sequential recording of sampled data from the same lead or data stream. For example, an ECG recorder may record sequentially 3 leads four time to receive 12-lead ECG, see [ISO 22077](https://www.iso.org/obp/ui/#iso:std:61871:en)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-timeOffset"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Time Offset for interlacing"/> - <definition value="A specific offset time in milliseconds from the stated time in the Observation.appliesDateTime to allow for representation of sequential recording of sampled data from the same lead or data stream. For example, an ECG recorder may record sequentially 3 leads four time to receive 12-lead ECG, see [ISO 22077](https://www.iso.org/obp/ui/#iso:std:61871:en)."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-timeOffset"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/timing-daysOfCycle"/> - <resource> - <StructureDefinition> - <id value="timing-daysOfCycle"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/timing-daysOfCycle"/> - <version value="4.1.0"/> - <name value="daysOfCycle"/> - <title value="Days of Cycle"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - MnM WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/MnM"/> - </telecom> - </contact> - <description value="Days of a possibly repeating cycle on which the action is to be performed. The cycle is defined by the first action with a timing element that is a parent of the daysOfCycle."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="PlanDefinition.action"/> - </context> - <context> - <type value="element"/> - <expression value="RequestGroup.action"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Days on which the action should be performed"/> - <definition value="Days of a possibly repeating cycle on which the action is to be performed. The cycle is defined by the first action with a timing element that is a parent of the daysOfCycle."/> - <comment value="The cycle is defined by a parent/containing action, and the daysOfCycle extension is used on individual actions within that cycle to indicate the days of the cycle on which the actions should be performed."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:day"> - <path value="Extension.extension"/> - <sliceName value="day"/> - <short value="What day to perform"/> - <definition value="An integer that specifies a day on which the action is to be performed (starting at one). In most cases, the first day of the first cycle will be day 1."/> - <min value="1"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:day.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:day.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:day.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="day"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:day.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/timing-daysOfCycle"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Days on which the action should be performed"/> - <definition value="Days of a possibly repeating cycle on which the action is to be performed. The cycle is defined by the first action with a timing element that is a parent of the daysOfCycle."/> - <comment value="The cycle is defined by a parent/containing action, and the daysOfCycle extension is used on individual actions within that cycle to indicate the days of the cycle on which the actions should be performed."/> - <min value="1"/> - <max value="1"/> - </element> - <element id="Extension.extension:day"> - <path value="Extension.extension"/> - <sliceName value="day"/> - <short value="What day to perform"/> - <definition value="An integer that specifies a day on which the action is to be performed (starting at one). In most cases, the first day of the first cycle will be day 1."/> - <min value="1"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:day.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:day.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="day"/> - </element> - <element id="Extension.extension:day.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/timing-daysOfCycle"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-expectation"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement2-expectation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-expectation"/> - <version value="4.1.0"/> - <name value="expectation"/> - <title value="Conformance expectation"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="Defines the level of expectation associated with a given system capability."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.resource.interaction"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.resource.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.operation"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest.interaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="SHALL | SHOULD | MAY |SHOULD-NOT"/> - <definition value="Defines the level of expectation associated with a given system capability."/> - <comment value="If "SHALL NOT" is desired, use the "prohibited" modifier extension. This extension should only be used with CapabilityStatement2s documenting requirements, not those documenting actual system capabilities."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-expectation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConformanceExpectation"/> - </extension> - <strength value="required"/> - <description value="Indicates the degree of adherence to a specified behavior or capability expected for a system to be deemed conformant with a specification."/> - <valueSet value="http://hl7.org/fhir/ValueSet/conformance-expectation|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="SHALL | SHOULD | MAY |SHOULD-NOT"/> - <definition value="Defines the level of expectation associated with a given system capability."/> - <comment value="If "SHALL NOT" is desired, use the "prohibited" modifier extension. This extension should only be used with CapabilityStatement2s documenting requirements, not those documenting actual system capabilities."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-expectation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConformanceExpectation"/> - </extension> - <strength value="required"/> - <description value="Indicates the degree of adherence to a specified behavior or capability expected for a system to be deemed conformant with a specification."/> - <valueSet value="http://hl7.org/fhir/ValueSet/conformance-expectation|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-hierarchy"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-hierarchy"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-hierarchy"/> - <version value="4.1.0"/> - <name value="hierarchy"/> - <title value="Hierarchy"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="For circular references (references back to the same type of resource): whether they are allowed to transitively point back to the same instance (false), or whether the relationship must be a strict one-way hierarchy (true)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.type"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether a circular reference is allowed to (transitively) point back to the same instance"/> - <definition value="For circular references (references back to the same type of resource): whether they are allowed to transitively point back to the same instance (false), or whether the relationship must be a strict one-way hierarchy (true)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-hierarchy"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether a circular reference is allowed to (transitively) point back to the same instance"/> - <definition value="For circular references (references back to the same type of resource): whether they are allowed to transitively point back to the same instance (false), or whether the relationship must be a strict one-way hierarchy (true)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-hierarchy"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/request-insurance"/> - <resource> - <StructureDefinition> - <id value="request-insurance"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/request-insurance"/> - <version value="4.1.0"/> - <name value="insurance"/> - <title value="Insurance"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be relevant in delivering the requested service."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated insurance coverage"/> - <definition value="Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be relevant in delivering the requested service."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="IN1/IN2"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=COVBY].target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-insurance"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Coverage"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ClaimResponse"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated insurance coverage"/> - <definition value="Insurance plans, coverage extensions, pre-authorizations and/or pre-determinations that may be relevant in delivering the requested service."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="IN1/IN2"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=COVBY].target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-insurance"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Coverage"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ClaimResponse"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDuration"/> - <resource> - <StructureDefinition> - <id value="openEHR-exposureDuration"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDuration"/> - <version value="4.1.0"/> - <name value="exposureDuration"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="The amount of time the individual was exposed to the Substance."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Amount of time individual was exposed to Substance"/> - <definition value="The amount of time the individual was exposed to the Substance."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDuration"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Duration"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Amount of time individual was exposed to Substance"/> - <definition value="The amount of time the individual was exposed to the Substance."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDuration"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Duration"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-choiceOrientation"/> - <resource> - <StructureDefinition> - <id value="questionnaire-choiceOrientation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-choiceOrientation"/> - <version value="4.1.0"/> - <name value="choiceOrientation"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Identifies the desired orientation when rendering a list of choices (typically radio-box or check-box lists)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='choice' or type='open-choice'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="horizontal | vertical"/> - <definition value="Identifies the desired orientation when rendering a list of choices (typically radio-box or check-box lists)."/> - <comment value="Systems may choose to wrap answers rather than attempting to display them all in one row or column. Language conventions may determine the order in which the choices are listed (left-to-right or right-to-left, etc.)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-choiceOrientation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ChoiceListOrientation"/> - </extension> - <strength value="required"/> - <description value="Direction in which lists of possible answers should be displayed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/choice-list-orientation|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="horizontal | vertical"/> - <definition value="Identifies the desired orientation when rendering a list of choices (typically radio-box or check-box lists)."/> - <comment value="Systems may choose to wrap answers rather than attempting to display them all in one row or column. Language conventions may determine the order in which the choices are listed (left-to-right or right-to-left, etc.)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-choiceOrientation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ChoiceListOrientation"/> - </extension> - <strength value="required"/> - <description value="Direction in which lists of possible answers should be displayed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/choice-list-orientation|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/composition-section-subject"/> - <resource> - <StructureDefinition> - <id value="composition-section-subject"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sd"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/composition-section-subject"/> - <version value="4.1.0"/> - <name value="section-subject"/> - <title value="Overrides Composition.subject"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Specifies that the section has a different subject that the Composition, or it's container section."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Composition.section"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Section has a different subject that it's container"/> - <definition value="Specifies that the section has a different subject that the Composition, or it's container section."/> - <comment value="This is used in various FHIR value sets to make comments on how particular codes are used when the formal definition is a little abstract or vague, but it's not clear whether it belongs in the actual value set resource."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/composition-section-subject"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Section has a different subject that it's container"/> - <definition value="Specifies that the section has a different subject that the Composition, or it's container section."/> - <comment value="This is used in various FHIR value sets to make comments on how particular codes are used when the formal definition is a little abstract or vague, but it's not clear whether it belongs in the actual value set resource."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/composition-section-subject"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameType"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-streetNameType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameType"/> - <version value="4.1.0"/> - <name value="ADXP-streetNameType"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The designation given to the street. (e.g. Street, Avenue, Crescent, etc.)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="streetNameType"/> - <definition value="The designation given to the street. (e.g. Street, Avenue, Crescent, etc.)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=STTYP]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="streetNameType"/> - <definition value="The designation given to the street. (e.g. Street, Avenue, Crescent, etc.)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=STTYP]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-authoritativeSource"/> - <resource> - <StructureDefinition> - <id value="valueset-authoritativeSource"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-authoritativeSource"/> - <version value="4.1.0"/> - <name value="authoritativeSource"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A reference to the authoritative accessible, persisted source of truth of the entire Value Set Definition, including textual information and available versions."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to the current trusted source of the ValueSet resource (metadata and definition)"/> - <definition value="A reference to the authoritative accessible, persisted source of truth of the entire Value Set Definition, including textual information and available versions."/> - <comment value="If this extension is not present, then the canonical URL (ValueSet.url) also serves the purpose of specifying the authoritative source. A difference between the canonical URL and the authoritiative source might arise in some cases due to ongoing organization restructuring, etc., and in those cases this extension may be used. The URL of the authoritative source is intended to be resolvable but that cannot be guaranteed. The designated "authoritative source" is normally expected to be able to generate a valid expansion of the value set, and if for some reason it cannot then the valueset-trusted-expansion should be used."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-authoritativeSource"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to the current trusted source of the ValueSet resource (metadata and definition)"/> - <definition value="A reference to the authoritative accessible, persisted source of truth of the entire Value Set Definition, including textual information and available versions."/> - <comment value="If this extension is not present, then the canonical URL (ValueSet.url) also serves the purpose of specifying the authoritative source. A difference between the canonical URL and the authoritiative source might arise in some cases due to ongoing organization restructuring, etc., and in those cases this extension may be used. The URL of the authoritative source is intended to be resolvable but that cannot be guaranteed. The designated "authoritative source" is normally expected to be able to generate a valid expansion of the value set, and if for some reason it cannot then the valueset-trusted-expansion should be used."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-authoritativeSource"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/medicationdispense-refillsRemaining"/> - <resource> - <StructureDefinition> - <id value="medicationdispense-refillsRemaining"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="phx"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/medicationdispense-refillsRemaining"/> - <version value="4.1.0"/> - <name value="refillsRemaining"/> - <title value="refillsRemaining"/> - <status value="draft"/> - <date value="2019-03-23"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The number of refills allowed or remaining after a dispensing event. Does not include the current dispense."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="MedicationDispense"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Number of refills allowed or remaining after a dispensing event."/> - <definition value="The number of refills allowed or remaining after a dispensing event. Does not include the current dispense."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/medicationdispense-refillsRemaining"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Number of refills allowed or remaining after a dispensing event."/> - <definition value="The number of refills allowed or remaining after a dispensing event. Does not include the current dispense."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/medicationdispense-refillsRemaining"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-locationPerformed"/> - <resource> - <StructureDefinition> - <id value="diagnosticReport-locationPerformed"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-locationPerformed"/> - <version value="4.1.0"/> - <name value="locationPerformed"/> - <title value="locationPerformed"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Facility location where this report was prepared."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Location Performed"/> - <definition value="Facility location where this report was prepared."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-locationPerformed"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Location Performed"/> - <definition value="Facility location where this report was prepared."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-locationPerformed"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-effectiveDate"/> - <resource> - <StructureDefinition> - <id value="valueset-effectiveDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-effectiveDate"/> - <version value="4.1.0"/> - <name value="effectiveDate"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This is the first date-time when the value set version becomes active, so this value is present on Inactive value set versions as well. The start Date_time is expected to be as of 0001 UTC of the Effective Date."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version becomes Active and is available for use"/> - <definition value="This is the first date-time when the value set version becomes active, so this value is present on Inactive value set versions as well. The start Date_time is expected to be as of 0001 UTC of the Effective Date."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-effectiveDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version becomes Active and is available for use"/> - <definition value="This is the first date-time when the value set version becomes active, so this value is present on Inactive value set versions as well. The start Date_time is expected to be as of 0001 UTC of the Effective Date."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-effectiveDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryAddressLine"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-deliveryAddressLine"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryAddressLine"/> - <version value="4.1.0"/> - <name value="ADXP-deliveryAddressLine"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A delivery address line is frequently used instead of breaking out delivery mode, delivery installation, etc. An address generally has only a delivery address line or a street address line, but not both."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryAddressLine"/> - <definition value="A delivery address line is frequently used instead of breaking out delivery mode, delivery installation, etc. An address generally has only a delivery address line or a street address line, but not both."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DAL]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryAddressLine"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryAddressLine"/> - <definition value="A delivery address line is frequently used instead of breaking out delivery mode, delivery installation, etc. An address generally has only a delivery address line or a street address line, but not both."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DAL]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryAddressLine"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-conceptmap"/> - <resource> - <StructureDefinition> - <id value="11179-permitted-value-conceptmap"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-conceptmap"/> - <version value="4.1.0"/> - <name value="permitted-value-conceptmap"/> - <title value="Permitted Values link"/> - <status value="draft"/> - <date value="2014-04-21"/> - <publisher value="Health Level Seven International (Orders and Observations)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Expresses the linkage between the internal codes used for storage and the codes used for exchange."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <uri value="http://metadata-standards.org/11179/"/> - <name value="ISO 11179"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition.snapshot.element.binding.valueSet"/> - </context> - <context> - <type value="element"/> - <expression value="StructureDefinition.differential.element.binding.valueSet"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.answerValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Mapping from permitted to transmitted"/> - <definition value="Expresses the linkage between the internal codes used for storage and the codes used for exchange."/> - <comment value="The permitted value set must have a 1..1 set of codes for each code in the value meaning value set. The source for the concept map is the value set the extension appears on. The target is the permitted-value-valueset."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.data_element_domain.member.meaning"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-conceptmap"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ConceptMap"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Mapping from permitted to transmitted"/> - <definition value="Expresses the linkage between the internal codes used for storage and the codes used for exchange."/> - <comment value="The permitted value set must have a 1..1 set of codes for each code in the value meaning value set. The source for the concept map is the value set the extension appears on. The target is the permitted-value-valueset."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.data_element_domain.member.meaning"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-conceptmap"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ConceptMap"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-applicable-version"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-applicable-version"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-applicable-version"/> - <version value="4.1.0"/> - <name value="applicable-version"/> - <title value="Applicable Version"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="An additional version that this profile apples to, other than the version explicitly stated in StructureDefinition.fhirVersion."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Another Version this applies to"/> - <definition value="An additional version that this profile apples to, other than the version explicitly stated in StructureDefinition.fhirVersion."/> - <comment value="This is typically only used where derivation = constraint. As the underlying resources become more stable, profiles on one version become applicable to other versions as well. It's possible to calculate automatically with the strutural features of a profile apply to a given version, but just because it's structurally ok doesn't mean that the meaning is correct. This extension allows a positive statement that the profile applies."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-applicable-version"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FHIRVersion"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="All published FHIR Versions."/> - <valueSet value="http://hl7.org/fhir/ValueSet/FHIR-version|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Another Version this applies to"/> - <definition value="An additional version that this profile apples to, other than the version explicitly stated in StructureDefinition.fhirVersion."/> - <comment value="This is typically only used where derivation = constraint. As the underlying resources become more stable, profiles on one version become applicable to other versions as well. It's possible to calculate automatically with the strutural features of a profile apply to a given version, but just because it's structurally ok doesn't mean that the meaning is correct. This extension allows a positive statement that the profile applies."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-applicable-version"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FHIRVersion"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="All published FHIR Versions."/> - <valueSet value="http://hl7.org/fhir/ValueSet/FHIR-version|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-valueset"/> - <resource> - <StructureDefinition> - <id value="11179-permitted-value-valueset"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-valueset"/> - <version value="4.1.0"/> - <name value="permitted-value-valueset"/> - <title value="Permitted Values"/> - <status value="draft"/> - <date value="2014-04-21"/> - <publisher value="Health Level Seven International (Orders and Observations)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Allows expressing the value set that must be stored internally by the system (as distinct from the base value set which defines values for exchange)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <uri value="http://metadata-standards.org/11179/"/> - <name value="ISO 11179"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition.snapshot.element.binding.valueSet"/> - </context> - <context> - <type value="element"/> - <expression value="StructureDefinition.differential.element.binding.valueSet"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.answerValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Permitted values"/> - <definition value="Allows expressing the value set that must be stored internally by the system (as distinct from the base value set which defines values for exchange)."/> - <comment value="The permitted value set must have a 1..1 set of codes for each code in the value meaning value set."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.data_element_domain.member"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-valueset"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Permitted values"/> - <definition value="Allows expressing the value set that must be stored internally by the system (as distinct from the base value set which defines values for exchange)."/> - <comment value="The permitted value set must have a 1..1 set of codes for each code in the value meaning value set."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="iso11179"/> - <map value="Data_Element.data_element_domain.member"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/11179-permitted-value-valueset"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAminoAcidChange"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsAminoAcidChange"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAminoAcidChange"/> - <version value="4.1.0"/> - <name value="AminoAcidChange"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="AminoAcidChange information."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="AminoAcidChange"/> - <definition value="AminoAcidChange information."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="HGVS nomenclature for observed Amino Acid Change"/> - <definition value="Human Genome Variation Society (HGVS) nomenclature for an amino acid change. Reference sequence ID used for HGVS naming must be annotated. An amino acid is a sequence feature that corresponds to a single amino acid residue in a polypeptide ([SO:0001237](http://www.sequenceontology.org/browser/current_svn/term/SO:0001237)). LOINC Code: ([48005-3](http://loinc.org/48005-3))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ClinVar-variant-database"/> - </extension> - <strength value="preferred"/> - <description value="NCBI central repository of potentially clinically relevant variants."/> - <valueSet value="http://hl7.org/fhir/ValueSet/clinvar"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type"> - <path value="Extension.extension"/> - <sliceName value="Type"/> - <short value="Amino Acid Change Type"/> - <definition value="Codified type for associated Amino Acid Change. LOINC Code: ([48006-1](http://loinc.org/48006-1))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAminoAcidChange"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="AminoAcidChange"/> - <definition value="AminoAcidChange information."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="HGVS nomenclature for observed Amino Acid Change"/> - <definition value="Human Genome Variation Society (HGVS) nomenclature for an amino acid change. Reference sequence ID used for HGVS naming must be annotated. An amino acid is a sequence feature that corresponds to a single amino acid residue in a polypeptide ([SO:0001237](http://www.sequenceontology.org/browser/current_svn/term/SO:0001237)). LOINC Code: ([48005-3](http://loinc.org/48005-3))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ClinVar-variant-database"/> - </extension> - <strength value="preferred"/> - <description value="NCBI central repository of potentially clinically relevant variants."/> - <valueSet value="http://hl7.org/fhir/ValueSet/clinvar"/> - </binding> - </element> - <element id="Extension.extension:Type"> - <path value="Extension.extension"/> - <sliceName value="Type"/> - <short value="Amino Acid Change Type"/> - <definition value="Codified type for associated Amino Acid Change. LOINC Code: ([48006-1](http://loinc.org/48006-1))."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Type"/> - </element> - <element id="Extension.extension:Type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAminoAcidChange"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-websocket"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement-websocket"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-websocket"/> - <version value="4.1.0"/> - <name value="websocket"/> - <title value="WebSocket"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="Where the server provides its web socket end-point."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Where server websocket end point is found"/> - <definition value="Where the server provides its web socket end-point."/> - <comment value="Used for web-socket based subscriptions."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-websocket"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Where server websocket end point is found"/> - <definition value="Where the server provides its web socket end-point."/> - <comment value="Used for web-socket based subscriptions."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-websocket"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingPerson"/> - <resource> - <StructureDefinition> - <id value="cqf-initiatingPerson"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingPerson"/> - <version value="4.1.0"/> - <name value="initiatingPerson"/> - <title value="initiatingPerson"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The person initiating the request."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The person initiating the request."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingPerson"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Person"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The person initiating the request."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingPerson"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Person"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-identifier"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-identifier"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-identifier"/> - <version value="4.1.0"/> - <name value="identifier"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="External Identifiers associated with this element - these are identifiers that are associated with the concept this element represents."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="External Identifier associated with this element"/> - <definition value="External Identifiers associated with this element - these are identifiers that are associated with the concept this element represents."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="Act.id, Role.id, Entity.id"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-identifier"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Identifier"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="External Identifier associated with this element"/> - <definition value="External Identifiers associated with this element - these are identifiers that are associated with the concept this element represents."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="Act.id, Role.id, Entity.id"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-identifier"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Identifier"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-cadavericDonor"/> - <resource> - <StructureDefinition> - <id value="patient-cadavericDonor"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-cadavericDonor"/> - <version value="4.1.0"/> - <name value="cadavericDonor"/> - <title value="cadavericDonor"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Flag indicating whether the patient authorized the donation of body parts after death."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Post-mortem donor status"/> - <definition value="Flag indicating whether the patient authorized the donation of body parts after death."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-cadavericDonor"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Post-mortem donor status"/> - <definition value="Flag indicating whether the patient authorized the donation of body parts after death."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-cadavericDonor"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix"/> - <resource> - <StructureDefinition> - <id value="humanname-partner-prefix"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix"/> - <version value="4.1.0"/> - <name value="partner-prefix"/> - <status value="draft"/> - <date value="2015-11-22"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The prefix portion (e.g. voorvoegsel) of the family name that is derived from the person's partner's surname, as distinguished from any portion that is derived from the surname of the person's own."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName.family"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Voorvoegsel derived from person's partner's surname"/> - <definition value="The prefix portion (e.g. voorvoegsel) of the family name that is derived from the person's partner's surname, as distinguished from any portion that is derived from the surname of the person's own."/> - <comment value="An example of a voorvoegsel is the "van" in "Ludwig van Beethoven". Since the voorvoegsel doesn't sort completely alphabetically, it is reasonable to identify it as a separate sub-component."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="FN.4"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (VV, SP)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Voorvoegsel derived from person's partner's surname"/> - <definition value="The prefix portion (e.g. voorvoegsel) of the family name that is derived from the person's partner's surname, as distinguished from any portion that is derived from the surname of the person's own."/> - <comment value="An example of a voorvoegsel is the "van" in "Ludwig van Beethoven". Since the voorvoegsel doesn't sort completely alphabetically, it is reasonable to identify it as a separate sub-component."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="FN.4"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (VV, SP)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-partner-prefix"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-haploid"/> - <resource> - <StructureDefinition> - <id value="hla-genotyping-results-haploid"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-haploid"/> - <version value="4.1.0"/> - <name value="haploid"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="haploid."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="haploid"/> - <definition value="haploid."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:locus"> - <path value="Extension.extension"/> - <sliceName value="locus"/> - <short value="haploid-locus"/> - <definition value="gene region."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:locus.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:locus.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:locus.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="locus"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:locus.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="haploid-type"/> - <definition value="haploid type."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:method"> - <path value="Extension.extension"/> - <sliceName value="method"/> - <short value="haploid-method"/> - <definition value="haploid method."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:method.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:method.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:method.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="method"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:method.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-haploid"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="haploid"/> - <definition value="haploid."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:locus"> - <path value="Extension.extension"/> - <sliceName value="locus"/> - <short value="haploid-locus"/> - <definition value="gene region."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:locus.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:locus.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="locus"/> - </element> - <element id="Extension.extension:locus.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="haploid-type"/> - <definition value="haploid type."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:method"> - <path value="Extension.extension"/> - <sliceName value="method"/> - <short value="haploid-method"/> - <definition value="haploid method."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:method.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:method.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="method"/> - </element> - <element id="Extension.extension:method.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-haploid"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryModeIdentifier"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-deliveryModeIdentifier"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryModeIdentifier"/> - <version value="4.1.0"/> - <name value="ADXP-deliveryModeIdentifier"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Represents the routing information such as a letter carrier route number. It is the identifying number of the designator (the box number or rural route number)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryModeIdentifier"/> - <definition value="Represents the routing information such as a letter carrier route number. It is the identifying number of the designator (the box number or rural route number)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DMODID]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryModeIdentifier"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryModeIdentifier"/> - <definition value="Represents the routing information such as a letter carrier route number. It is the identifying number of the designator (the box number or rural route number)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DMODID]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryModeIdentifier"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-keyWord"/> - <resource> - <StructureDefinition> - <id value="valueset-keyWord"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-keyWord"/> - <version value="4.1.0"/> - <name value="keyWord"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Word or words used in an information retrieval system to indicate the content of the value set."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Descriptors and key terms for search"/> - <definition value="Word or words used in an information retrieval system to indicate the content of the value set."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-keyWord"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Descriptors and key terms for search"/> - <definition value="Word or words used in an information retrieval system to indicate the content of the value set."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-keyWord"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-minOccurs"/> - <resource> - <StructureDefinition> - <id value="questionnaire-minOccurs"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-minOccurs"/> - <version value="4.1.0"/> - <name value="minOccurs"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="The minimum number of times the group must appear, or the minimum number of answers for a question - when greater than 1."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type!='display' and (required=true or %extension.valueInteger=0)"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Minimum repetitions"/> - <definition value="The minimum number of times the group must appear, or the minimum number of answers for a question - when greater than 1."/> - <comment value="Default assumption for "required" elements is minOccurs=1."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-minOccurs"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Minimum repetitions"/> - <definition value="The minimum number of times the group must appear, or the minimum number of answers for a question - when greater than 1."/> - <comment value="Default assumption for "required" elements is minOccurs=1."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-minOccurs"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-ParticipantObjectContainsStudy"/> - <resource> - <StructureDefinition> - <id value="auditevent-ParticipantObjectContainsStudy"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-ParticipantObjectContainsStudy"/> - <version value="4.1.0"/> - <name value="ParticipantObjectContainsStudy"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="A Study Instance ID, which may be used when the Entity type is not (110180, DCM, "Study Instance UID")."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Contains Study"/> - <definition value="A Study Instance ID, which may be used when the Entity type is not (110180, DCM, "Study Instance UID")."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="ParticipantObjectContainsStudy"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-ParticipantObjectContainsStudy"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Identifier"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Contains Study"/> - <definition value="A Study Instance ID, which may be used when the Entity type is not (110180, DCM, "Study Instance UID")."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="dicom"/> - <map value="ParticipantObjectContainsStudy"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-ParticipantObjectContainsStudy"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Identifier"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-nullFlavor"/> - <resource> - <StructureDefinition> - <id value="iso21090-nullFlavor"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-nullFlavor"/> - <version value="4.1.0"/> - <name value="nullFlavor"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="If the value is not a proper value, indicates the reason."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="NI | OTH | NINF | PINF | UNK | ASKU | NAV | NASK | TRC | MSK | NA | QS"/> - <definition value="If the value is not a proper value, indicates the reason."/> - <comment value="Considerable care must be used when using nullFlavor in this context of FHIR - more than any other concept, this is tied to the way v3 works, and FHIR is quite different. For instance, there is no notion of a "proper value" as opposed to any other value in FHIR. a NullFlavor should be understood to mean, "why information is missing", and the nulFlavors OTH, NINF, PINF, and TRC should not be used."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="n/a"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ANY.nullFlavor"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-nullFlavor"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="NullFlavor"/> - </extension> - <strength value="required"/> - <description value="A collection of codes specifying why a valid value is not present."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-NullFlavor|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="NI | OTH | NINF | PINF | UNK | ASKU | NAV | NASK | TRC | MSK | NA | QS"/> - <definition value="If the value is not a proper value, indicates the reason."/> - <comment value="Considerable care must be used when using nullFlavor in this context of FHIR - more than any other concept, this is tied to the way v3 works, and FHIR is quite different. For instance, there is no notion of a "proper value" as opposed to any other value in FHIR. a NullFlavor should be understood to mean, "why information is missing", and the nulFlavors OTH, NINF, PINF, and TRC should not be used."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="n/a"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ANY.nullFlavor"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-nullFlavor"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="NullFlavor"/> - </extension> - <strength value="required"/> - <description value="A collection of codes specifying why a valid value is not present."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-NullFlavor|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-allele-database"/> - <resource> - <StructureDefinition> - <id value="hla-genotyping-results-allele-database"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-allele-database"/> - <version value="4.1.0"/> - <name value="allele-database"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Allele Database."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Allele Database"/> - <definition value="Allele Database."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-allele-database"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Allele Database"/> - <definition value="Allele Database."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-allele-database"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-supported-system"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement-supported-system"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-supported-system"/> - <version value="4.1.0"/> - <name value="supported-system"/> - <title value="Supported Code System"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="A code system that is supported by the system that is not defined in a value set resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system not defined in a value set"/> - <definition value="A code system that is supported by the system that is not defined in a value set resource."/> - <comment value="Typically, this is a large terminology such as LOINC, SNOMED CT."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-supported-system"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system not defined in a value set"/> - <definition value="A code system that is supported by the system that is not defined in a value set resource."/> - <comment value="Typically, this is a large terminology such as LOINC, SNOMED CT."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-supported-system"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-conceptOrder"/> - <resource> - <StructureDefinition> - <id value="codesystem-conceptOrder"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-conceptOrder"/> - <version value="4.1.0"/> - <name value="conceptOrder"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Identifies the relative order in which concepts within the value set should be presented to a user."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Appearance order for user selection"/> - <definition value="Identifies the relative order in which concepts within the value set should be presented to a user."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-conceptOrder"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Appearance order for user selection"/> - <definition value="Identifies the relative order in which concepts within the value set should be presented to a user."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-conceptOrder"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/humanname-own-prefix"/> - <resource> - <StructureDefinition> - <id value="humanname-own-prefix"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/humanname-own-prefix"/> - <version value="4.1.0"/> - <name value="own-prefix"/> - <status value="draft"/> - <date value="2015-11-22"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The prefix portion (e.g. voorvoegsel) of the family name that is derived from the person's own surname, as distinguished from any portion that is derived from the surname of the person's partner or spouse."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName.family"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Voorvoegsel derived from person's own surname"/> - <definition value="The prefix portion (e.g. voorvoegsel) of the family name that is derived from the person's own surname, as distinguished from any portion that is derived from the surname of the person's partner or spouse."/> - <comment value="An example of a voorvoegsel is the "van" in "Ludwig van Beethoven". Since the voorvoegsel doesn't sort completely alphabetically, it is reasonable to specify it as a separate sub-component."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="FN.2"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (VV, R)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-own-prefix"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Voorvoegsel derived from person's own surname"/> - <definition value="The prefix portion (e.g. voorvoegsel) of the family name that is derived from the person's own surname, as distinguished from any portion that is derived from the surname of the person's partner or spouse."/> - <comment value="An example of a voorvoegsel is the "van" in "Ludwig van Beethoven". Since the voorvoegsel doesn't sort completely alphabetically, it is reasonable to specify it as a separate sub-component."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="FN.2"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (VV, R)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-own-prefix"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/condition-dueTo"/> - <resource> - <StructureDefinition> - <id value="condition-dueTo"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/condition-dueTo"/> - <version value="4.1.0"/> - <name value="dueTo"/> - <title value="dueTo"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Further conditions, problems, diagnoses, procedures or events or the substance that caused/triggered this Condition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Causes for this Condition"/> - <definition value="Further conditions, problems, diagnoses, procedures or events or the substance that caused/triggered this Condition."/> - <comment value="Although a condition may be caused by a substance, this is not intended to be used to record allergies/adverse reactions to substances."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value=".typeCode"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-dueTo"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Immunization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationUsage"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionCause"/> - </extension> - <strength value="example"/> - <description value="Codes that describe causes of patient conditions; e.g. Surgical mishap, escalation of a previous condition, etc."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-cause"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Causes for this Condition"/> - <definition value="Further conditions, problems, diagnoses, procedures or events or the substance that caused/triggered this Condition."/> - <comment value="Although a condition may be caused by a substance, this is not intended to be used to record allergies/adverse reactions to substances."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value=".typeCode"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-dueTo"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Immunization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationUsage"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionCause"/> - </extension> - <strength value="example"/> - <description value="Codes that describe causes of patient conditions; e.g. Surgical mishap, escalation of a previous condition, etc."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-cause"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/procedure-incisionDateTime"/> - <resource> - <StructureDefinition> - <id value="procedure-incisionDateTime"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/procedure-incisionDateTime"/> - <version value="4.1.0"/> - <name value="incisionDateTime"/> - <title value="incisionDateTime"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The time of the first incision."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The first incision time"/> - <definition value="The time of the first incision."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-incisionDateTime"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The first incision time"/> - <definition value="The time of the first incision."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-incisionDateTime"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-hidden"/> - <resource> - <StructureDefinition> - <id value="questionnaire-hidden"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-hidden"/> - <version value="4.1.0"/> - <name value="hidden"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="If true, indicates that the extended item should not be displayed to the user."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Don't display to user"/> - <definition value="If true, indicates that the extended item should not be displayed to the user."/> - <comment value="If an item is hidden, all descendant items are hidden as well."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-hidden"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Don't display to user"/> - <definition value="If true, indicates that the extended item should not be displayed to the user."/> - <comment value="If an item is hidden, all descendant items are hidden as well."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-hidden"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/procedure-method"/> - <resource> - <StructureDefinition> - <id value="procedure-method"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/procedure-method"/> - <version value="4.1.0"/> - <name value="method"/> - <title value="method"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The method used to perform this procedure."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The method used to perform the procedure"/> - <definition value="The method used to perform this procedure."/> - <comment value="Improve definition. Add mappings."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-method"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The method used to perform the procedure"/> - <definition value="The method used to perform this procedure."/> - <comment value="Improve definition. Add mappings."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-method"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-explicit-type-name"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-explicit-type-name"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-explicit-type-name"/> - <version value="4.1.0"/> - <name value="explicit-type-name"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A name to use for the type, in implementations. This is a suggestion; it's not a normative part of the FHIR specification, but it does appear in the UML diagrams, and is used in generated code, schemas, etc.to identify the type."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Advisory - name of Type for implementations"/> - <definition value="A name to use for the type, in implementations. This is a suggestion; it's not a normative part of the FHIR specification, but it does appear in the UML diagrams, and is used in generated code, schemas, etc.to identify the type."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-explicit-type-name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Advisory - name of Type for implementations"/> - <definition value="A name to use for the type, in implementations. This is a suggestion; it's not a normative part of the FHIR specification, but it does appear in the UML diagrams, and is used in generated code, schemas, etc.to identify the type."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-explicit-type-name"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-versionNumber"/> - <resource> - <StructureDefinition> - <id value="composition-clinicaldocument-versionNumber"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sd"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-versionNumber"/> - <version value="4.1.0"/> - <name value="versionNumber"/> - <status value="draft"/> - <date value="2015-03-17"/> - <publisher value="Health Level Seven, Inc. - Structured Documents WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/structure"/> - </telecom> - </contact> - <description value="Version specific identifier for the composition, assigned when each version is created/updated."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Composition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Version-specific identifier for composition"/> - <definition value="Version specific identifier for the composition, assigned when each version is created/updated."/> - <comment value="While each resource, including the composition itself, has its own version identifier, this is a formal identifier for the logical version of the composition as a whole. It would remain constant if the resources were moved to a new server, and all got new individual resource versions, for example."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-versionNumber"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Version-specific identifier for composition"/> - <definition value="Version specific identifier for the composition, assigned when each version is created/updated."/> - <comment value="While each resource, including the composition itself, has its own version identifier, this is a formal identifier for the logical version of the composition as a whole. It would remain constant if the resources were moved to a new server, and all got new individual resource versions, for example."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-versionNumber"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/procedure-progressStatus"/> - <resource> - <StructureDefinition> - <id value="procedure-progressStatus"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/procedure-progressStatus"/> - <version value="4.1.0"/> - <name value="progressStatus"/> - <title value="progressStatus"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A code to track a detailed progress of a procedure (e.g. In Recovery, Prepared for Surgery)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A details procedure progress"/> - <definition value="A code to track a detailed progress of a procedure (e.g. In Recovery, Prepared for Surgery)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-progressStatus"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ProcedureProgress"/> - </extension> - <strength value="example"/> - <description value="A code to describe a detailed status/stage of the procedure."/> - <valueSet value="http://hl7.org/fhir/ValueSet/procedure-progress-status-codes"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A details procedure progress"/> - <definition value="A code to track a detailed progress of a procedure (e.g. In Recovery, Prepared for Surgery)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-progressStatus"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ProcedureProgress"/> - </extension> - <strength value="example"/> - <description value="A code to describe a detailed status/stage of the procedure."/> - <valueSet value="http://hl7.org/fhir/ValueSet/procedure-progress-status-codes"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/goal-acceptance"/> - <resource> - <StructureDefinition> - <id value="goal-acceptance"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/goal-acceptance"/> - <version value="4.1.0"/> - <name value="acceptance"/> - <title value="Goal acceptance"/> - <status value="draft"/> - <date value="2014-12-07"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir"/> - </telecom> - </contact> - <description value="Information about the acceptance and relative priority assigned to the goal by the patient, practitioners and other stake-holders."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Goal"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Individual acceptance of goal"/> - <definition value="Information about the acceptance and relative priority assigned to the goal by the patient, practitioners and other stake-holders."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:individual"> - <path value="Extension.extension"/> - <sliceName value="individual"/> - <short value="Individual whose acceptance is reflected"/> - <definition value="The person whose acceptance/priority is being reflected."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:individual.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:individual.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:individual.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="individual"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:individual.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:status"> - <path value="Extension.extension"/> - <sliceName value="status"/> - <short value="agree | disagree | pending"/> - <definition value="Indicates whether the specified individual has accepted the goal or not."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:status.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:status.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:status.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="status"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:status.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GoalAcceptanceStatus"/> - </extension> - <strength value="required"/> - <description value="Codes indicating whether the goal has been accepted by a stakeholder."/> - <valueSet value="http://hl7.org/fhir/ValueSet/goal-acceptance-status|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:priority"> - <path value="Extension.extension"/> - <sliceName value="priority"/> - <short value="Priority of goal for individual"/> - <definition value="Indicates the relative priority assigned to the resource by the stakeholder."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:priority.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:priority.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:priority.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="priority"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:priority.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GoalAcceptancePriority"/> - </extension> - <strength value="example"/> - <description value="Codes indicating the relative priority assigned to a goal by a stakeholder."/> - <valueSet value="http://hl7.org/fhir/ValueSet/goal-priority"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/goal-acceptance"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Individual acceptance of goal"/> - <definition value="Information about the acceptance and relative priority assigned to the goal by the patient, practitioners and other stake-holders."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:individual"> - <path value="Extension.extension"/> - <sliceName value="individual"/> - <short value="Individual whose acceptance is reflected"/> - <definition value="The person whose acceptance/priority is being reflected."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:individual.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:individual.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="individual"/> - </element> - <element id="Extension.extension:individual.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - </element> - <element id="Extension.extension:status"> - <path value="Extension.extension"/> - <sliceName value="status"/> - <short value="agree | disagree | pending"/> - <definition value="Indicates whether the specified individual has accepted the goal or not."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:status.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:status.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="status"/> - </element> - <element id="Extension.extension:status.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GoalAcceptanceStatus"/> - </extension> - <strength value="required"/> - <description value="Codes indicating whether the goal has been accepted by a stakeholder."/> - <valueSet value="http://hl7.org/fhir/ValueSet/goal-acceptance-status|4.1.0"/> - </binding> - </element> - <element id="Extension.extension:priority"> - <path value="Extension.extension"/> - <sliceName value="priority"/> - <short value="Priority of goal for individual"/> - <definition value="Indicates the relative priority assigned to the resource by the stakeholder."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:priority.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:priority.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="priority"/> - </element> - <element id="Extension.extension:priority.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GoalAcceptancePriority"/> - </extension> - <strength value="example"/> - <description value="Codes indicating the relative priority assigned to a goal by a stakeholder."/> - <valueSet value="http://hl7.org/fhir/ValueSet/goal-priority"/> - </binding> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/goal-acceptance"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameBase"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-streetNameBase"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameBase"/> - <version value="4.1.0"/> - <name value="ADXP-streetNameBase"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The base name of a roadway or artery recognized by a municipality (excluding street type and direction)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="streetNameBase"/> - <definition value="The base name of a roadway or artery recognized by a municipality (excluding street type and direction)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=STB]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameBase"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="streetNameBase"/> - <definition value="The base name of a roadway or artery recognized by a municipality (excluding street type and direction)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=STB]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetNameBase"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-security-category"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-security-category"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-security-category"/> - <version value="4.1.0"/> - <name value="security-category"/> - <title value="Security Category"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Provides general guidance around the kind of access Control to Read, Search, Create, Update, or Delete the resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Security Categorization for Resource"/> - <definition value="Provides general guidance around the kind of access Control to Read, Search, Create, Update, or Delete the resource."/> - <comment value="This is only guidance; applications must perform their own analysis to meet their own requirements."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-security-category"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ResourceSecurityCategory"/> - </extension> - <strength value="required"/> - <description value="Provides general guidance around the kind of access Control to Read, Search, Create, Update, or Delete a resource."/> - <valueSet value="http://hl7.org/fhir/ValueSet/resource-security-category|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Security Categorization for Resource"/> - <definition value="Provides general guidance around the kind of access Control to Read, Search, Create, Update, or Delete the resource."/> - <comment value="This is only guidance; applications must perform their own analysis to meet their own requirements."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-security-category"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ResourceSecurityCategory"/> - </extension> - <strength value="required"/> - <description value="Provides general guidance around the kind of access Control to Read, Search, Create, Update, or Delete a resource."/> - <valueSet value="http://hl7.org/fhir/ValueSet/resource-security-category|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-type"/> - <resource> - <StructureDefinition> - <id value="familymemberhistory-type"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-type"/> - <version value="4.1.0"/> - <name value="type"/> - <title value="type"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Purpose of the family member history or why it was created, such as when family member history is targeted for cardiovascular health, mental health, or genetic counseling."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Purpose of the family member history"/> - <definition value="Purpose of the family member history or why it was created, such as when family member history is targeted for cardiovascular health, mental health, or genetic counseling."/> - <comment value="List.code can be used to capture the type across a list of family members' histories."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Purpose of the family member history"/> - <definition value="Purpose of the family member history or why it was created, such as when family member history is targeted for cardiovascular health, mental health, or genetic counseling."/> - <comment value="List.code can be used to capture the type across a list of family members' histories."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-type"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/identifier-validDate"/> - <resource> - <StructureDefinition> - <id value="identifier-validDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/identifier-validDate"/> - <version value="4.1.0"/> - <name value="validDate"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Indicates a date on which this identifier value was deemed to apply to this instance."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Identifier"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="External Identifier associated with this element"/> - <definition value="Indicates a date on which this identifier value was deemed to apply to this instance."/> - <comment value="When referencing business objects where an identifier might not be globally unique but is instead re-used, allows determination of which object applies (on the presumption that the identifiers on the referenced object have an identifier.period or other metadata that indicates when that identifier was valid for the business object)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/identifier-validDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="External Identifier associated with this element"/> - <definition value="Indicates a date on which this identifier value was deemed to apply to this instance."/> - <comment value="When referencing business objects where an identifier might not be globally unique but is instead re-used, allows determination of which object applies (on the presumption that the identifiers on the referenced object have an identifier.period or other metadata that indicates when that identifier was valid for the business object)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/identifier-validDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/humanname-partner-name"/> - <resource> - <StructureDefinition> - <id value="humanname-partner-name"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/humanname-partner-name"/> - <version value="4.1.0"/> - <name value="partner-name"/> - <status value="draft"/> - <date value="2015-11-22"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The portion of the family name that is derived from the person's partner's surname, as distinguished from any portion that is derived from the surname of the person's own name."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName.family"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion derived from person's partner's surname"/> - <definition value="The portion of the family name that is derived from the person's partner's surname, as distinguished from any portion that is derived from the surname of the person's own name."/> - <comment value="If the person's surname has legally changed to become (or incorporate) the surname of the person's partner or spouse, this is the person's surname immediately prior to such change. Often this is the person's "maiden name"."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="FN.5"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (SP)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-partner-name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion derived from person's partner's surname"/> - <definition value="The portion of the family name that is derived from the person's partner's surname, as distinguished from any portion that is derived from the surname of the person's own name."/> - <comment value="If the person's surname has legally changed to become (or incorporate) the surname of the person's partner or spouse, this is the person's surname immediately prior to such change. Often this is the person's "maiden name"."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="FN.5"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (SP)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-partner-name"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-Encrypted"/> - <resource> - <StructureDefinition> - <id value="auditevent-Encrypted"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-Encrypted"/> - <version value="4.1.0"/> - <name value="Encrypted"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="True or False indicating whether the data was encrypted."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Encrypted state"/> - <definition value="True or False indicating whether the data was encrypted."/> - <comment value="If there was a mix of encrypted and non-encrypted data, then create two AuditEvents."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="Encrypted"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Encrypted"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Encrypted state"/> - <definition value="True or False indicating whether the data was encrypted."/> - <comment value="If there was a mix of encrypted and non-encrypted data, then create two AuditEvents."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="dicom"/> - <map value="Encrypted"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Encrypted"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitValueSet"/> - <resource> - <StructureDefinition> - <id value="questionnaire-unitValueSet"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitValueSet"/> - <version value="4.1.0"/> - <name value="unitValueSet"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="A set of units that the user may choose when providing a quantity value."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='quantity'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Unit choices"/> - <definition value="A set of units that the user may choose when providing a quantity value."/> - <comment value="Provide either unit-option(s) or unit-valueSet. In the absence of either, any unit is valid."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitValueSet"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Unit choices"/> - <definition value="A set of units that the user may choose when providing a quantity value."/> - <comment value="Provide either unit-option(s) or unit-valueSet. In the absence of either, any unit is valid."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitValueSet"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAncestry"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsAncestry"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAncestry"/> - <version value="4.1.0"/> - <name value="Ancestry"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Ancestry information."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Ancestry"/> - <definition value="Ancestry information."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="Ancestry name"/> - <definition value="A definition that describes the geographical origin of a patient."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Name.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Percentage"> - <path value="Extension.extension"/> - <sliceName value="Percentage"/> - <short value="Ancestry percentage"/> - <definition value="The ratio of this ancestry to all of the patient's ancestry."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Percentage.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Percentage.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Percentage.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Percentage"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Percentage.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="decimal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Source"> - <path value="Extension.extension"/> - <sliceName value="Source"/> - <short value="Source of ancestry report"/> - <definition value="In what way the ancestry is reported (e.g. Patient reported, Genetic test, Other, Unknown)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Source.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Source.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Source.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Source"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Source.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAncestry"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Ancestry"/> - <definition value="Ancestry information."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:Name"> - <path value="Extension.extension"/> - <sliceName value="Name"/> - <short value="Ancestry name"/> - <definition value="A definition that describes the geographical origin of a patient."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:Name.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Name.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Name"/> - </element> - <element id="Extension.extension:Name.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:Percentage"> - <path value="Extension.extension"/> - <sliceName value="Percentage"/> - <short value="Ancestry percentage"/> - <definition value="The ratio of this ancestry to all of the patient's ancestry."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:Percentage.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Percentage.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Percentage"/> - </element> - <element id="Extension.extension:Percentage.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="decimal"/> - </type> - </element> - <element id="Extension.extension:Source"> - <path value="Extension.extension"/> - <sliceName value="Source"/> - <short value="Source of ancestry report"/> - <definition value="In what way the ancestry is reported (e.g. Patient reported, Genetic test, Other, Unknown)."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:Source.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Source.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Source"/> - </element> - <element id="Extension.extension:Source.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsAncestry"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/quantity-precision"/> - <resource> - <StructureDefinition> - <id value="quantity-precision"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/quantity-precision"/> - <version value="4.1.0"/> - <name value="precision"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Explicit precision of the number. This is the number of significant decimal places after the decimal point, irrespective of how many are actually present in the explicitly represented decimal."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="decimal"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Explicit precision (number of significant decimal places)"/> - <definition value="Explicit precision of the number. This is the number of significant decimal places after the decimal point, irrespective of how many are actually present in the explicitly represented decimal."/> - <comment value="The presence of this extension does not change conformance expectations with regard to rendering and calculations that use the number - these are still based on the raw decimal value. Applications that perform calculations SHALL ensure that this extension is removed or updated to the correct precision value if the number is changed. Applications should consider using the exponential form (e.g. 2.10e3) on the raw decimal to manage significant figures, but should be mindful of human display when doing so."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/quantity-precision"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Explicit precision (number of significant decimal places)"/> - <definition value="Explicit precision of the number. This is the number of significant decimal places after the decimal point, irrespective of how many are actually present in the explicitly represented decimal."/> - <comment value="The presence of this extension does not change conformance expectations with regard to rendering and calculations that use the number - these are still based on the raw decimal value. Applications that perform calculations SHALL ensure that this extension is removed or updated to the correct precision value if the number is changed. Applications should consider using the exponential form (e.g. 2.10e3) on the raw decimal to manage significant figures, but should be mindful of human display when doing so."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/quantity-precision"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/servicerequest-precondition"/> - <resource> - <StructureDefinition> - <id value="servicerequest-precondition"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/servicerequest-precondition"/> - <version value="4.1.0"/> - <name value="precondition"/> - <title value="precondition"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The condition or state of the patient, prior or during the diagnostic procedure or test, for example, fasting, at-rest, or post-operative. This captures circumstances that may influence the measured value and have bearing on the interpretation of the result."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ServiceRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The condition or state of the patient for this test"/> - <definition value="The condition or state of the patient, prior or during the diagnostic procedure or test, for example, fasting, at-rest, or post-operative. This captures circumstances that may influence the measured value and have bearing on the interpretation of the result."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/servicerequest-precondition"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The condition or state of the patient for this test"/> - <definition value="The condition or state of the patient, prior or during the diagnostic procedure or test, for example, fasting, at-rest, or post-operative. This captures circumstances that may influence the measured value and have bearing on the interpretation of the result."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/servicerequest-precondition"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-display-hint"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-display-hint"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-display-hint"/> - <version value="4.1.0"/> - <name value="display-hint"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Hinting information for the narrative generator - a series of name: value; pairs."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Hinting information for the narrative generator"/> - <definition value="Hinting information for the narrative generator - a series of name: value; pairs."/> - <comment value="known names: default (default value - don't represent if this value)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-display-hint"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Hinting information for the narrative generator"/> - <definition value="Hinting information for the narrative generator - a series of name: value; pairs."/> - <comment value="known names: default (default value - don't represent if this value)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-display-hint"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-trusted-expansion"/> - <resource> - <StructureDefinition> - <id value="codesystem-trusted-expansion"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-trusted-expansion"/> - <version value="4.1.0"/> - <name value="trusted-expansion"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Indicates an authoritative source for performing value set expansions."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to a trusted expansion"/> - <definition value="Indicates an authoritative source for performing value set expansions."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-trusted-expansion"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to a trusted expansion"/> - <definition value="Indicates an authoritative source for performing value set expansions."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-trusted-expansion"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/request-replaces"/> - <resource> - <StructureDefinition> - <id value="request-replaces"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/request-replaces"/> - <version value="4.1.0"/> - <name value="replaces"/> - <title value="Replaces"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Completed or terminated request(s) whose function is taken by this new request."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Request(s) replaced by this request"/> - <definition value="Completed or terminated request(s) whose function is taken by this new request."/> - <comment value="The replacement could be because the initial request was immediately rejected (due to an issue) or because the previous request was completed, but the need for the action described by the request remains ongoing."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="Handled by message location of ORC (ORC.1=RO or RU)"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=RPLC].target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-replaces"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Request(s) replaced by this request"/> - <definition value="Completed or terminated request(s) whose function is taken by this new request."/> - <comment value="The replacement could be because the initial request was immediately rejected (due to an issue) or because the previous request was completed, but the need for the action described by the request remains ongoing."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="Handled by message location of ORC (ORC.1=RO or RU)"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=RPLC].target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-replaces"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/task-candidateList"/> - <resource> - <StructureDefinition> - <id value="task-candidateList"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/task-candidateList"/> - <version value="4.1.0"/> - <name value="candidateList"/> - <title value="Candidate List"/> - <status value="draft"/> - <date value="2017-02-16"/> - <publisher value="Health Level Seven, Inc. - FHIR I WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Identifies the individuals who are candidates for being the owner of the task."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Task"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="List of possible owners of Task"/> - <definition value="Identifies the individuals who are candidates for being the owner of the task."/> - <comment value="In some environments, this list might be binding (i.e. owner must be one of the listed individuals), in others it may be suggestive (i.e. preferred owner will be from this list, but business processes may allow assignment to someone not on the list."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.performer.actor, Request.performer"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".participation[typeCode=PRF].role"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/task-candidateList"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Device"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="List of possible owners of Task"/> - <definition value="Identifies the individuals who are candidates for being the owner of the task."/> - <comment value="In some environments, this list might be binding (i.e. owner must be one of the listed individuals), in others it may be suggestive (i.e. preferred owner will be from this list, but business processes may allow assignment to someone not on the list."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.performer.actor, Request.performer"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".participation[typeCode=PRF].role"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/task-candidateList"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Device"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-concept-definition"/> - <resource> - <StructureDefinition> - <id value="valueset-concept-definition"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-concept-definition"/> - <version value="4.1.0"/> - <name value="concept-definition"/> - <title value="Definition"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A definition that describes the meaning of this code when used as part of this value set."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include.concept"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet.expansion.contains"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A definition for this code"/> - <definition value="A definition that describes the meaning of this code when used as part of this value set."/> - <comment value="This is provided for when the source code system doesn't actually provide a definition (there are many such). Providing an definition for a code SHOULD NOT be done where the underlying code system provides a definition."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-concept-definition"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A definition for this code"/> - <definition value="A definition that describes the meaning of this code when used as part of this value set."/> - <comment value="This is provided for when the source code system doesn't actually provide a definition (there are many such). Providing an definition for a code SHOULD NOT be done where the underlying code system provides a definition."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-concept-definition"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/consent-Transcriber"/> - <resource> - <StructureDefinition> - <id value="consent-Transcriber"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="cbcc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/consent-Transcriber"/> - <version value="4.1.0"/> - <name value="Transcriber"/> - <title value="Transcriber"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - CBCC WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/homehealth/index.cfm"/> - </telecom> - </contact> - <description value="Any person/thing who transcribed the consent into the system."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Consent"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Transcribed consent"/> - <definition value="Any person/thing who transcribed the consent into the system."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-Transcriber"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Transcribed consent"/> - <definition value="Any person/thing who transcribed the consent into the system."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-Transcriber"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserTaskContext"/> - <resource> - <StructureDefinition> - <id value="cqf-systemUserTaskContext"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserTaskContext"/> - <version value="4.1.0"/> - <name value="systemUserTaskContext"/> - <title value="systemUserTaskContext"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The task the system user is performing, e.g. laboratory results review, medication list review, etc. This information can be used to tailor decision support outputs, such as recommended information resources."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The task the system user is performing"/> - <definition value="The task the system user is performing, e.g. laboratory results review, medication list review, etc. This information can be used to tailor decision support outputs, such as recommended information resources."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserTaskContext"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The task the system user is performing"/> - <definition value="The task the system user is performing, e.g. laboratory results review, medication list review, etc. This information can be used to tailor decision support outputs, such as recommended information resources."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserTaskContext"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/humanname-mothers-family"/> - <resource> - <StructureDefinition> - <id value="humanname-mothers-family"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/humanname-mothers-family"/> - <version value="4.1.0"/> - <name value="mothers-family"/> - <status value="draft"/> - <date value="2015-11-22"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The portion of the family name that is derived from the person's mother."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName.family"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion of family name derived from mother"/> - <definition value="The portion of the family name that is derived from the person's mother."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-mothers-family"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion of family name derived from mother"/> - <definition value="The portion of the family name that is derived from the person's mother."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-mothers-family"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/event-partOf"/> - <resource> - <StructureDefinition> - <id value="event-partOf"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/event-partOf"/> - <version value="4.1.0"/> - <name value="partOf"/> - <title value="Part Of"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="A larger event of which this particular event is a component or step."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Part of referenced event"/> - <definition value="A larger event of which this particular event is a component or step."/> - <comment value="Not to be used to link an event to an Encounter - use Event.context for that. [The allowed reference resources may be adjusted as appropriate for the event resource]."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.partOf"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship[typeCode=COMP].source[moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-partOf"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Part of referenced event"/> - <definition value="A larger event of which this particular event is a component or step."/> - <comment value="Not to be used to link an event to an Encounter - use Event.context for that. [The allowed reference resources may be adjusted as appropriate for the event resource]."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.partOf"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship[typeCode=COMP].source[moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-partOf"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-encounterType"/> - <resource> - <StructureDefinition> - <id value="cqf-encounterType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-encounterType"/> - <version value="4.1.0"/> - <name value="encounterType"/> - <title value="encounterType"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The type of the encounter."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The type of the encounter."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-encounterType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The type of the encounter."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-encounterType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/operationoutcome-authority"/> - <resource> - <StructureDefinition> - <id value="operationoutcome-authority"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/operationoutcome-authority"/> - <version value="4.1.0"/> - <name value="authority"/> - <title value="Rule Reference"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A reference to where the rule is defined (based on the authoritative URLs in the applicable conformance resources)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="OperationOutcome.issue"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to where the rule is defined"/> - <definition value="A reference to where the rule is defined (based on the authoritative URLs in the applicable conformance resources)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationoutcome-authority"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to where the rule is defined"/> - <definition value="A reference to where the rule is defined (based on the authoritative URLs in the applicable conformance resources)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationoutcome-authority"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-pattern"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-pattern"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-pattern"/> - <version value="4.1.0"/> - <name value="pattern"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A pattern that all the target resources follow - that is, a pattern that they all declare their relationship to."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.type"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A pattern that the target resources follow"/> - <definition value="A pattern that all the target resources follow - that is, a pattern that they all declare their relationship to."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-pattern"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/StructureDefinition"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A pattern that the target resources follow"/> - <definition value="A pattern that all the target resources follow - that is, a pattern that they all declare their relationship to."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-pattern"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/StructureDefinition"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserType"/> - <resource> - <StructureDefinition> - <id value="cqf-systemUserType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserType"/> - <version value="4.1.0"/> - <name value="systemUserType"/> - <title value="systemUserType"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The type of user initiating the request, e.g. patient, healthcare provider, or specific type of healthcare provider (physician, nurse, etc.)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The type of user initiating the request"/> - <definition value="The type of user initiating the request, e.g. patient, healthcare provider, or specific type of healthcare provider (physician, nurse, etc.)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The type of user initiating the request"/> - <definition value="The type of user initiating the request, e.g. patient, healthcare provider, or specific type of healthcare provider (physician, nurse, etc.)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-toocostly"/> - <resource> - <StructureDefinition> - <id value="valueset-toocostly"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-toocostly"/> - <version value="4.1.0"/> - <name value="toocostly"/> - <title value="Expansion Truncated"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Marks that the expansion is incomplete, because the full value set is too large to represent, and the client asked for an incomplete fragment."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.expansion"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The expansion is incomplete because the full expansion is too large"/> - <definition value="Marks that the expansion is incomplete, because the full value set is too large to represent, and the client asked for an incomplete fragment."/> - <comment value="Typically, servers will limit expansion to a number like 10000 codes."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-toocostly"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The expansion is incomplete because the full expansion is too large"/> - <definition value="Marks that the expansion is incomplete, because the full value set is too large to represent, and the client asked for an incomplete fragment."/> - <comment value="Typically, servers will limit expansion to a number like 10000 codes."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-toocostly"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-measureInfo"/> - <resource> - <StructureDefinition> - <id value="cqf-measureInfo"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-measureInfo"/> - <version value="4.1.0"/> - <name value="measureInfo"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The measure criteria that resulted in the resource being included in a particular evaluatedResources bundle."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Measure criteria for the resource"/> - <definition value="The measure criteria that resulted in the resource being included in a particular evaluatedResources bundle."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:measure"> - <path value="Extension.extension"/> - <sliceName value="measure"/> - <short value="The measure being calculated"/> - <definition value="The measure that resulted in this resource being included in the measure report."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:measure.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:measure.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:measure.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="measure"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:measure.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Measure"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:groupId"> - <path value="Extension.extension"/> - <sliceName value="groupId"/> - <short value="The group identifier"/> - <definition value="The group within the measure that resulted in this resource being included in the measure report."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:groupId.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:groupId.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:groupId.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="groupId"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:groupId.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:populationId"> - <path value="Extension.extension"/> - <sliceName value="populationId"/> - <short value="The population identifier"/> - <definition value="The population within the measure that resulted in this resource being included in the measure report."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:populationId.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:populationId.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:populationId.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="populationId"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:populationId.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-measureInfo"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Measure criteria for the resource"/> - <definition value="The measure criteria that resulted in the resource being included in a particular evaluatedResources bundle."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:measure"> - <path value="Extension.extension"/> - <sliceName value="measure"/> - <short value="The measure being calculated"/> - <definition value="The measure that resulted in this resource being included in the measure report."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:measure.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:measure.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="measure"/> - </element> - <element id="Extension.extension:measure.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Measure"/> - </type> - </element> - <element id="Extension.extension:groupId"> - <path value="Extension.extension"/> - <sliceName value="groupId"/> - <short value="The group identifier"/> - <definition value="The group within the measure that resulted in this resource being included in the measure report."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:groupId.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:groupId.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="groupId"/> - </element> - <element id="Extension.extension:groupId.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:populationId"> - <path value="Extension.extension"/> - <sliceName value="populationId"/> - <short value="The population identifier"/> - <definition value="The population within the measure that resulted in this resource being included in the measure report."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:populationId.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:populationId.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="populationId"/> - </element> - <element id="Extension.extension:populationId.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-measureInfo"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-assertedDate"/> - <resource> - <StructureDefinition> - <id value="allergyintolerance-assertedDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-assertedDate"/> - <version value="4.1.0"/> - <name value="assertedDate"/> - <title value="assertedDate"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The date on which the existence of the AllergyIntolerance was first asserted or acknowledged."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Date the allergy or intolerance was first asserted"/> - <definition value="The date on which the existence of the AllergyIntolerance was first asserted or acknowledged."/> - <comment value="The assertedDate is in the context of the recording practitioner and might not be the same as the recordedDate."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-assertedDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Date the allergy or intolerance was first asserted"/> - <definition value="The date on which the existence of the AllergyIntolerance was first asserted or acknowledged."/> - <comment value="The assertedDate is in the context of the recording practitioner and might not be the same as the recordedDate."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-assertedDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-gatewayDevice"/> - <resource> - <StructureDefinition> - <id value="observation-gatewayDevice"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-gatewayDevice"/> - <version value="4.1.0"/> - <name value="gatewayDevice"/> - <title value="Gateway Device"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="The Provenance/AuditEvent resources can represent the same information. Note that the Provenance/AuditEvent resources can represent the same information."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Gateway Device"/> - <definition value="The Provenance/AuditEvent resources can represent the same information. Note that the Provenance/AuditEvent resources can represent the same information."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-gatewayDevice"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Device"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Gateway Device"/> - <definition value="The Provenance/AuditEvent resources can represent the same information. Note that the Provenance/AuditEvent resources can represent the same information."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-gatewayDevice"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Device"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-replacedby"/> - <resource> - <StructureDefinition> - <id value="codesystem-replacedby"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-replacedby"/> - <version value="4.1.0"/> - <name value="replacedby"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A code that replaces this - use this code instead."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A code that replaces this"/> - <definition value="A code that replaces this - use this code instead."/> - <comment value="Usually such codes are deprecated (retired)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-replacedby"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A code that replaces this"/> - <definition value="A code that replaces this - use this code instead."/> - <comment value="Usually such codes are deprecated (retired)."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-replacedby"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/designNote"/> - <resource> - <StructureDefinition> - <id value="designNote"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/designNote"/> - <version value="4.1.0"/> - <name value="Design Note"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Information captured by the author/maintainer of the questionnaire for development purposes, not intended to be seen by users."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Design comments"/> - <definition value="Information captured by the author/maintainer of the questionnaire for development purposes, not intended to be seen by users."/> - <comment value="Allows capture of todos, rationale for design decisions, etc."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/designNote"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Design comments"/> - <definition value="Information captured by the author/maintainer of the questionnaire for development purposes, not intended to be seen by users."/> - <comment value="Allows capture of todos, rationale for design decisions, etc."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/designNote"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="markdown"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-encounterClass"/> - <resource> - <StructureDefinition> - <id value="cqf-encounterClass"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-encounterClass"/> - <version value="4.1.0"/> - <name value="encounterClass"/> - <title value="encounterClass"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The class of encounter (inpatient, outpatient, etc.)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The class of encounter (inpatient, outpatient, etc.)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-encounterClass"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The class of encounter (inpatient, outpatient, etc.)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-encounterClass"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-relativeDateTime"/> - <resource> - <StructureDefinition> - <id value="cqf-relativeDateTime"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-relativeDateTime"/> - <version value="4.1.0"/> - <name value="relativeDateTime"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="A date/time value that is determined based on a duration offset from a target event."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A date/time that is specified relative to another event"/> - <definition value="A date/time value that is determined based on a duration offset from a target event."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:target"> - <path value="Extension.extension"/> - <sliceName value="target"/> - <short value="Relative to what event"/> - <definition value="The event that the date/time value is relative to."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:target.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:target.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:target.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="target"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:target.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:targetPath"> - <path value="Extension.extension"/> - <sliceName value="targetPath"/> - <short value="Relative to which element on the event"/> - <definition value="The path to the element that defines the effective period for the event that the date/time value is relative to."/> - <comment value="The specified path must be resolvable from the type of the target. The path is allowed to contain qualifiers (.) to traverse sub-elements, as well as indexers ([x]) to traverse multiple-cardinality sub-elements. Note that the index must be an integer constant."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:targetPath.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:targetPath.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:targetPath.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="targetPath"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:targetPath.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:relationship"> - <path value="Extension.extension"/> - <sliceName value="relationship"/> - <short value="before-start | before | before-end | concurrent-with-start | concurrent | concurrent-with-end | after-start | after | after-end"/> - <definition value="The relationship to the effective period of the target event that the date/time value is relative to."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:relationship.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:relationship.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:relationship.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="relationship"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:relationship.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ActionRelationshipType"/> - </extension> - <strength value="required"/> - <description value="A type that describes how two events are related in time."/> - <valueSet value="http://hl7.org/fhir/ValueSet/action-relationship-type|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:offset"> - <path value="Extension.extension"/> - <sliceName value="offset"/> - <short value="How long"/> - <definition value="A duration or range of durations that specifies the offset between the date/time value and the target event. For example, 30-60 minutes before."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:offset.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:offset.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:offset.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:offset.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Duration"/> - </type> - <type> - <code value="Range"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-relativeDateTime"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A date/time that is specified relative to another event"/> - <definition value="A date/time value that is determined based on a duration offset from a target event."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:target"> - <path value="Extension.extension"/> - <sliceName value="target"/> - <short value="Relative to what event"/> - <definition value="The event that the date/time value is relative to."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:target.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:target.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="target"/> - </element> - <element id="Extension.extension:target.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - </element> - <element id="Extension.extension:targetPath"> - <path value="Extension.extension"/> - <sliceName value="targetPath"/> - <short value="Relative to which element on the event"/> - <definition value="The path to the element that defines the effective period for the event that the date/time value is relative to."/> - <comment value="The specified path must be resolvable from the type of the target. The path is allowed to contain qualifiers (.) to traverse sub-elements, as well as indexers ([x]) to traverse multiple-cardinality sub-elements. Note that the index must be an integer constant."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:targetPath.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:targetPath.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="targetPath"/> - </element> - <element id="Extension.extension:targetPath.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:relationship"> - <path value="Extension.extension"/> - <sliceName value="relationship"/> - <short value="before-start | before | before-end | concurrent-with-start | concurrent | concurrent-with-end | after-start | after | after-end"/> - <definition value="The relationship to the effective period of the target event that the date/time value is relative to."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:relationship.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:relationship.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="relationship"/> - </element> - <element id="Extension.extension:relationship.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ActionRelationshipType"/> - </extension> - <strength value="required"/> - <description value="A type that describes how two events are related in time."/> - <valueSet value="http://hl7.org/fhir/ValueSet/action-relationship-type|4.1.0"/> - </binding> - </element> - <element id="Extension.extension:offset"> - <path value="Extension.extension"/> - <sliceName value="offset"/> - <short value="How long"/> - <definition value="A duration or range of durations that specifies the offset between the date/time value and the target event. For example, 30-60 minutes before."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:offset.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:offset.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - </element> - <element id="Extension.extension:offset.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Duration"/> - </type> - <type> - <code value="Range"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-relativeDateTime"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/event-performerFunction"/> - <resource> - <StructureDefinition> - <id value="event-performerFunction"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/event-performerFunction"/> - <version value="4.1.0"/> - <name value="performerFunction"/> - <title value="Performer Function"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Distinguishes the type of involvement of the performer in the event. For example, 'author', 'verifier' or 'responsible party'."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation.performer"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport.performer"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference.author"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Type of performance"/> - <definition value="Distinguishes the type of involvement of the performer in the event. For example, 'author', 'verifier' or 'responsible party'."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.performer.function"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-performerFunction"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="PerformerFunction"/> - </extension> - <strength value="extensible"/> - <valueSet value="http://hl7.org/fhir/ValueSet/performer-function"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Type of performance"/> - <definition value="Distinguishes the type of involvement of the performer in the event. For example, 'author', 'verifier' or 'responsible party'."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="workflow"/> - <map value="Event.performer.function"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-performerFunction"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="PerformerFunction"/> - </extension> - <strength value="extensible"/> - <valueSet value="http://hl7.org/fhir/ValueSet/performer-function"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-parent"/> - <resource> - <StructureDefinition> - <id value="family-member-history-genetics-parent"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-parent"/> - <version value="4.1.0"/> - <name value="parent"/> - <status value="draft"/> - <date value="2019-05-29"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Identifies a parent of the relative."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Mother(s) & Father(s) - genetic & other"/> - <definition value="Identifies a parent of the relative."/> - <comment value="Some individuals may have more than two parents (e.g. genetic vs. adoptive parents). Even non-genetic relationships can be relevant in terms of genetic exposure."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="player[classCode<LIV, determinerCode=INSTANCE].scopesRole"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="mother | father | adoptive mother | etc."/> - <definition value="Distinguishes between different types of parental relationships with varying granularity to support capturing the relationship "to the degree known"."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="code"/> - </mapping> - </element> - <element id="Extension.extension:type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ParentRelationshipType"/> - </extension> - <strength value="required"/> - <description value="Parental relationship types."/> - <valueSet value="http://hl7.org/fhir/ValueSet/parent-relationship-codes|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:reference"> - <path value="Extension.extension"/> - <sliceName value="reference"/> - <short value="Link to parent relative(s)"/> - <definition value="Points to the FamilyMemberHistory record of the relation who is the parent of this relation."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="player.id"/> - </mapping> - </element> - <element id="Extension.extension:reference.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:reference.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:reference.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="reference"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:reference.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-parent"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Mother(s) & Father(s) - genetic & other"/> - <definition value="Identifies a parent of the relative."/> - <comment value="Some individuals may have more than two parents (e.g. genetic vs. adoptive parents). Even non-genetic relationships can be relevant in terms of genetic exposure."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="player[classCode<LIV, determinerCode=INSTANCE].scopesRole"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="mother | father | adoptive mother | etc."/> - <definition value="Distinguishes between different types of parental relationships with varying granularity to support capturing the relationship "to the degree known"."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="code"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ParentRelationshipType"/> - </extension> - <strength value="required"/> - <description value="Parental relationship types."/> - <valueSet value="http://hl7.org/fhir/ValueSet/parent-relationship-codes|4.1.0"/> - </binding> - </element> - <element id="Extension.extension:reference"> - <path value="Extension.extension"/> - <sliceName value="reference"/> - <short value="Link to parent relative(s)"/> - <definition value="Points to the FamilyMemberHistory record of the relation who is the parent of this relation."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="player.id"/> - </mapping> - </element> - <element id="Extension.extension:reference.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:reference.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="reference"/> - </element> - <element id="Extension.extension:reference.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-parent"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-bindingName"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"/> - <version value="4.1.0"/> - <name value="bindingName"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A name that can be used for code generation when generating named enumerations for the binding."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.binding"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Suggested Name for code generation"/> - <definition value="A name that can be used for code generation when generating named enumerations for the binding."/> - <comment value="There is no need to use this name for conformance to the specification, but implementers may prefer to match e.g. the schema enumeration name."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Suggested Name for code generation"/> - <definition value="A name that can be used for code generation when generating named enumerations for the binding."/> - <comment value="There is no need to use this name for conformance to the specification, but implementers may prefer to match e.g. the schema enumeration name."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/subscription-event-count"/> - <resource> - <StructureDefinition> - <id value="subscription-event-count"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/subscription-event-count"/> - <version value="4.1.0"/> - <name value="subscription-event-count"/> - <title value="Subscription Event Count"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The number of events this Subscription has attempted to fire (0 for handshake)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.meta"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The number of events this Subscription has attempted to fire"/> - <definition value="The number of events this Subscription has attempted to fire (0 for handshake)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-event-count"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="unsignedInt"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The number of events this Subscription has attempted to fire"/> - <definition value="The number of events this Subscription has attempted to fire (0 for handshake)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-event-count"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="unsignedInt"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-recipientType"/> - <resource> - <StructureDefinition> - <id value="cqf-recipientType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-recipientType"/> - <version value="4.1.0"/> - <name value="recipientType"/> - <title value="recipientType"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The type of individual that will consume the response content. This may be different from the requesting user type (e.g. if a clinician is getting disease management guidance for provision to a patient). E.g. patient, healthcare provider or specific type of healthcare provider (physician, nurse, etc.)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The type of individual that will consume the response content. This may be different from the requesting user type (e.g. if a clinician is getting disease management guidance for provision to a patient). E.g. patient, healthcare provider or specific type of healthcare provider (physician, nurse, etc.)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-recipientType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The type of individual that will consume the response content. This may be different from the requesting user type (e.g. if a clinician is getting disease management guidance for provision to a patient). E.g. patient, healthcare provider or specific type of healthcare provider (physician, nurse, etc.)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-recipientType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserLanguage"/> - <resource> - <StructureDefinition> - <id value="cqf-systemUserLanguage"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserLanguage"/> - <version value="4.1.0"/> - <name value="systemUserLanguage"/> - <title value="systemUserLanguage"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="Preferred language of the person using the system."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="Preferred language of the person using the system."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserLanguage"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="Preferred language of the person using the system."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-systemUserLanguage"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-fhir-type"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"/> - <version value="4.1.0"/> - <name value="fhir-type"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The FHIR type of a property - used on the value property of a primitive type (for which there is no type in the FHIR typing system), and Element.id, Resource.id, and Extension.url. All of these have a non-FHIR type in thir structure definition, and this specifies the applicable FHIR type."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.type"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Base FHIR type (when a special property)"/> - <definition value="The FHIR type of a property - used on the value property of a primitive type (for which there is no type in the FHIR typing system), and Element.id, Resource.id, and Extension.url. All of these have a non-FHIR type in thir structure definition, and this specifies the applicable FHIR type."/> - <comment value="This is in effect, compiler magic for the typing system."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DataType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="A version specific list of the data types defined by the FHIR specification for use as an element type (any of the FHIR defined data types)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/data-types|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Base FHIR type (when a special property)"/> - <definition value="The FHIR type of a property - used on the value property of a primitive type (for which there is no type in the FHIR typing system), and Element.id, Resource.id, and Extension.url. All of these have a non-FHIR type in thir structure definition, and this specifies the applicable FHIR type."/> - <comment value="This is in effect, compiler magic for the typing system."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DataType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="A version specific list of the data types defined by the FHIR specification for use as an element type (any of the FHIR defined data types)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/data-types|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-expand-rules"/> - <resource> - <StructureDefinition> - <id value="valueset-expand-rules"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-expand-rules"/> - <version value="4.1.0"/> - <name value="expand-rules"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Defines how concepts are processed into the expansion when it's for UI presentation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="all-codes | ungrouped | groups-only"/> - <definition value="Defines how concepts are processed into the expansion when it's for UI presentation."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expand-rules"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ExpansionProcessingRule"/> - </extension> - <strength value="required"/> - <description value="Defines how concepts are processed into the expansion when it's for UI presentation."/> - <valueSet value="http://hl7.org/fhir/ValueSet/expansion-processing-rule|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="all-codes | ungrouped | groups-only"/> - <definition value="Defines how concepts are processed into the expansion when it's for UI presentation."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expand-rules"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ExpansionProcessingRule"/> - </extension> - <strength value="required"/> - <description value="Defines how concepts are processed into the expansion when it's for UI presentation."/> - <valueSet value="http://hl7.org/fhir/ValueSet/expansion-processing-rule|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-rules-text"/> - <resource> - <StructureDefinition> - <id value="valueset-rules-text"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-rules-text"/> - <version value="4.1.0"/> - <name value="rules-text"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="An expression that provides an alternative definition of the content of the value set in some form that is not computable - e.g instructions that could only be followed by a human."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An alternative non-computable expression of the value set content"/> - <definition value="An expression that provides an alternative definition of the content of the value set in some form that is not computable - e.g instructions that could only be followed by a human."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-rules-text"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An alternative non-computable expression of the value set content"/> - <definition value="An expression that provides an alternative definition of the content of the value set in some form that is not computable - e.g instructions that could only be followed by a human."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-rules-text"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="markdown"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/contactpoint-extension"/> - <resource> - <StructureDefinition> - <id value="contactpoint-extension"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/contactpoint-extension"/> - <version value="4.1.0"/> - <name value="extension"/> - <title value="Extension"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The number that may be dialed within a private phone network or after successfully connecting to a private phone network. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ContactPoint"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Number within private network"/> - <definition value="The number that may be dialed within a private phone network or after successfully connecting to a private phone network. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-extension"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Number within private network"/> - <definition value="The number that may be dialed within a private phone network or after successfully connecting to a private phone network. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-extension"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/maxSize"/> - <resource> - <StructureDefinition> - <id value="maxSize"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/maxSize"/> - <version value="4.1.0"/> - <name value="maxSize"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="For attachment answers, indicates the maximum size an attachment can be."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Max size in MB"/> - <definition value="For attachment answers, indicates the maximum size an attachment can be."/> - <comment value="This extension only has meaning if the element has a type of Attachment."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/maxSize"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="decimal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Max size in MB"/> - <definition value="For attachment answers, indicates the maximum size an attachment can be."/> - <comment value="This extension only has meaning if the element has a type of Attachment."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/maxSize"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="decimal"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-location"/> - <resource> - <StructureDefinition> - <id value="openEHR-location"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-location"/> - <version value="4.1.0"/> - <name value="location"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="The anatomical location / body site(s) where the symptoms manifested."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Body site of manifestations"/> - <definition value="The anatomical location / body site(s) where the symptoms manifested."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-location"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="BodySite"/> - </extension> - <strength value="extensible"/> - <description value="Codes describing anatomical locations. May include laterality."/> - <valueSet value="http://hl7.org/fhir/ValueSet/body-site"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Body site of manifestations"/> - <definition value="The anatomical location / body site(s) where the symptoms manifested."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-location"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="BodySite"/> - </extension> - <strength value="extensible"/> - <description value="Codes describing anatomical locations. May include laterality."/> - <valueSet value="http://hl7.org/fhir/ValueSet/body-site"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/operationdefinition-profile"/> - <resource> - <StructureDefinition> - <id value="operationdefinition-profile"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/operationdefinition-profile"/> - <version value="4.1.0"/> - <name value="profile"/> - <title value="Profile"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Identifies a profile structure or implementation Guide that applies to the datatype this element refers to. If any profiles are specified, then the content must conform to at least one of them. The URL can be a local reference - to a contained StructureDefinition, or a reference to another StructureDefinition or Implementation Guide by a canonical URL. When an implementation guide is specified, the type SHALL conform to at least one profile defined in the implementation guide."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="OperationDefinition.parameter"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Profiles (StructureDefinition or IG) - one must apply"/> - <definition value="Identifies a profile structure or implementation Guide that applies to the datatype this element refers to. If any profiles are specified, then the content must conform to at least one of them. The URL can be a local reference - to a contained StructureDefinition, or a reference to another StructureDefinition or Implementation Guide by a canonical URL. When an implementation guide is specified, the type SHALL conform to at least one profile defined in the implementation guide."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationdefinition-profile"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Profiles (StructureDefinition or IG) - one must apply"/> - <definition value="Identifies a profile structure or implementation Guide that applies to the datatype this element refers to. If any profiles are specified, then the content must conform to at least one of them. The URL can be a local reference - to a contained StructureDefinition, or a reference to another StructureDefinition or Implementation Guide by a canonical URL. When an implementation guide is specified, the type SHALL conform to at least one profile defined in the implementation guide."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationdefinition-profile"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-NumberOfInstances"/> - <resource> - <StructureDefinition> - <id value="auditevent-NumberOfInstances"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-NumberOfInstances"/> - <version value="4.1.0"/> - <name value="NumberOfInstances"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="The Number of SOP Instances referred to by this entity."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Number of SOP Instances referred to by this entity"/> - <definition value="The Number of SOP Instances referred to by this entity."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="NumberOfInstances"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-NumberOfInstances"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Number of SOP Instances referred to by this entity"/> - <definition value="The Number of SOP Instances referred to by this entity."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="dicom"/> - <map value="NumberOfInstances"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-NumberOfInstances"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/match-grade"/> - <resource> - <StructureDefinition> - <id value="match-grade"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/match-grade"/> - <version value="4.1.0"/> - <name value="match-grade"/> - <title value="Matching Grade"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Assessment of resource match outcome - how likely this resource is to be a match."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.entry.search"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="How likely this resource is to be a match"/> - <definition value="Assessment of resource match outcome - how likely this resource is to be a match."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/match-grade"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="MatchGrade"/> - </extension> - <strength value="required"/> - <description value="A Master Patient Index (MPI) assessment of whether a candidate patient record is a match or not."/> - <valueSet value="http://hl7.org/fhir/ValueSet/match-grade|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="How likely this resource is to be a match"/> - <definition value="Assessment of resource match outcome - how likely this resource is to be a match."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/match-grade"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="MatchGrade"/> - </extension> - <strength value="required"/> - <description value="A Master Patient Index (MPI) assessment of whether a candidate patient record is a match or not."/> - <valueSet value="http://hl7.org/fhir/ValueSet/match-grade|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-extensible"/> - <resource> - <StructureDefinition> - <id value="valueset-extensible"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-extensible"/> - <version value="4.1.0"/> - <name value="extensible"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Whether this is intended to be used with an extensible binding or not."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Intended to be used with an extensible binding (e.g. 'open')"/> - <definition value="Whether this is intended to be used with an extensible binding or not."/> - <comment value="Value sets intended for extensible bindings often are more selective about the concepts they include."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-extensible"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Intended to be used with an extensible binding (e.g. 'open')"/> - <definition value="Whether this is intended to be used with an extensible binding or not."/> - <comment value="Value sets intended for extensible bindings often are more selective about the concepts they include."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-extensible"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/subscription-url"/> - <resource> - <StructureDefinition> - <id value="subscription-url"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/subscription-url"/> - <version value="4.1.0"/> - <name value="subscription-url"/> - <title value="Subscription URL"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The URL for the Subscription this notification relates to (local to server)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.meta"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The URL for the Subscription this notification relates to"/> - <definition value="The URL for the Subscription this notification relates to (local to server)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-url"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="url"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The URL for the Subscription this notification relates to"/> - <definition value="The URL for the Subscription this notification relates to (local to server)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-url"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="url"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-birthTime"/> - <resource> - <StructureDefinition> - <id value="patient-birthTime"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-birthTime"/> - <version value="4.1.0"/> - <name value="birthTime"/> - <title value="Birth Time"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The time of day that the Patient was born. This includes the date to ensure that the timezone information can be communicated effectively."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient.birthDate"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Time of day of birth"/> - <definition value="The time of day that the Patient was born. This includes the date to ensure that the timezone information can be communicated effectively."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-birthTime"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Time of day of birth"/> - <definition value="The time of day that the Patient was born. This includes the date to ensure that the timezone information can be communicated effectively."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-birthTime"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-animal"/> - <resource> - <StructureDefinition> - <id value="patient-animal"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-animal"/> - <version value="4.1.0"/> - <name value="animal"/> - <title value="animal"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This patient is known to be an animal."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="This patient is known to be an animal (non-human)"/> - <definition value="This patient is known to be an animal."/> - <comment value="The absence of the animal extension does not imply that the patient is a human. If a system requires such a positive assertion that the patient is human, an extension will be required. (Do not use a species of homo-sapiens in animal species, as this would incorrectly infer that the patient is an animal)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="player[classCode=ANM]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:species"> - <path value="Extension.extension"/> - <sliceName value="species"/> - <short value="The animal species. E.g. Dog, Cow."/> - <definition value="Identifies the high level taxonomic categorization of the kind of animal."/> - <comment value="If the patient is non-human, at least a species SHALL be specified. Species SHALL be a widely recognized taxonomic classification. It might or might not be Linnaean taxonomy and might or might not be at the level of species. If the level is finer than species--such as a breed code--the code system used SHALL allow inference of the species. (The common example is that the word "Hereford" does not allow inference of the species Bos taurus, because there is a Hereford pig breed, but the SNOMED CT code for "Hereford Cattle Breed" does.)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="PID-35"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="code"/> - </mapping> - </element> - <element id="Extension.extension:species.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:species.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:species.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="species"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:species.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalSpecies"/> - </extension> - <strength value="example"/> - <description value="The species of an animal."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-species"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:breed"> - <path value="Extension.extension"/> - <sliceName value="breed"/> - <short value="The animal breed. E.g. Poodle, Angus."/> - <definition value="Identifies the detailed categorization of the kind of animal."/> - <comment value="Breed MAY be used to provide further taxonomic or non-taxonomic classification. It may involve local or proprietary designation--such as commercial strain--and/or additional information such as production type."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="PID-35 (where more detailed value is present)"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="playedRole[classCode=GEN]/scoper[classCode=ANM, determinerCode=KIND]/code"/> - </mapping> - </element> - <element id="Extension.extension:breed.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:breed.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:breed.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="breed"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:breed.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalBreed"/> - </extension> - <strength value="example"/> - <description value="The breed of an animal."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-breeds"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:genderStatus"> - <path value="Extension.extension"/> - <sliceName value="genderStatus"/> - <short value="The status of the animal's reproductive parts. E.g. Neutered, Intact."/> - <definition value="Indicates the current state of the animal's reproductive organs."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="genderStatusCode"/> - </mapping> - </element> - <element id="Extension.extension:genderStatus.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:genderStatus.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:genderStatus.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="genderStatus"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:genderStatus.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalGenderStatus"/> - </extension> - <strength value="example"/> - <description value="The state of the animal's reproductive organs."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-genderstatus"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-animal"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="This patient is known to be an animal (non-human)"/> - <definition value="This patient is known to be an animal."/> - <comment value="The absence of the animal extension does not imply that the patient is a human. If a system requires such a positive assertion that the patient is human, an extension will be required. (Do not use a species of homo-sapiens in animal species, as this would incorrectly infer that the patient is an animal)."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="player[classCode=ANM]"/> - </mapping> - </element> - <element id="Extension.extension:species"> - <path value="Extension.extension"/> - <sliceName value="species"/> - <short value="The animal species. E.g. Dog, Cow."/> - <definition value="Identifies the high level taxonomic categorization of the kind of animal."/> - <comment value="If the patient is non-human, at least a species SHALL be specified. Species SHALL be a widely recognized taxonomic classification. It might or might not be Linnaean taxonomy and might or might not be at the level of species. If the level is finer than species--such as a breed code--the code system used SHALL allow inference of the species. (The common example is that the word "Hereford" does not allow inference of the species Bos taurus, because there is a Hereford pig breed, but the SNOMED CT code for "Hereford Cattle Breed" does.)."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="PID-35"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="code"/> - </mapping> - </element> - <element id="Extension.extension:species.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:species.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="species"/> - </element> - <element id="Extension.extension:species.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalSpecies"/> - </extension> - <strength value="example"/> - <description value="The species of an animal."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-species"/> - </binding> - </element> - <element id="Extension.extension:breed"> - <path value="Extension.extension"/> - <sliceName value="breed"/> - <short value="The animal breed. E.g. Poodle, Angus."/> - <definition value="Identifies the detailed categorization of the kind of animal."/> - <comment value="Breed MAY be used to provide further taxonomic or non-taxonomic classification. It may involve local or proprietary designation--such as commercial strain--and/or additional information such as production type."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="PID-35 (where more detailed value is present)"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="playedRole[classCode=GEN]/scoper[classCode=ANM, determinerCode=KIND]/code"/> - </mapping> - </element> - <element id="Extension.extension:breed.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:breed.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="breed"/> - </element> - <element id="Extension.extension:breed.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalBreed"/> - </extension> - <strength value="example"/> - <description value="The breed of an animal."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-breeds"/> - </binding> - </element> - <element id="Extension.extension:genderStatus"> - <path value="Extension.extension"/> - <sliceName value="genderStatus"/> - <short value="The status of the animal's reproductive parts. E.g. Neutered, Intact."/> - <definition value="Indicates the current state of the animal's reproductive organs."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="genderStatusCode"/> - </mapping> - </element> - <element id="Extension.extension:genderStatus.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:genderStatus.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="genderStatus"/> - </element> - <element id="Extension.extension:genderStatus.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalGenderStatus"/> - </extension> - <strength value="example"/> - <description value="The state of the animal's reproductive organs."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-genderstatus"/> - </binding> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-animal"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/minValue"/> - <resource> - <StructureDefinition> - <id value="minValue"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/minValue"/> - <version value="4.1.0"/> - <name value="minValue"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="The inclusive lower bound on the range of allowed values for the data element."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Must be >= this value"/> - <definition value="The inclusive lower bound on the range of allowed values for the data element."/> - <comment value="Data type specified must be the same as the data type for the data element."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/minValue"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Must be >= this value"/> - <definition value="The inclusive lower bound on the range of allowed values for the data element."/> - <comment value="Data type specified must be the same as the data type for the data element."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/minValue"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/resource-pertainsToGoal"/> - <resource> - <StructureDefinition> - <id value="resource-pertainsToGoal"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/resource-pertainsToGoal"/> - <version value="4.1.0"/> - <name value="pertainsToGoal"/> - <title value="pertains to goal"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Indicates that the resource is related to either the measurement, achievement or progress towards the referenced goal. For example, a Procedure to exercise pertainsToGoal of losing weight."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Resource"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Pertains to goal"/> - <definition value="Indicates that the resource is related to either the measurement, achievement or progress towards the referenced goal. For example, a Procedure to exercise pertainsToGoal of losing weight."/> - <comment value="This extension is limited to subject-specific activity-related resources (events & intents). I.e. This can't be put on Goal or Patient. This association isn't for the purpose of goal management, but for things such as noting that a particular observation result, prescription or other activity is pertinent to the achievement (or possibly non-achievement) of the referenced goal."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-pertainsToGoal"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Goal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Pertains to goal"/> - <definition value="Indicates that the resource is related to either the measurement, achievement or progress towards the referenced goal. For example, a Procedure to exercise pertainsToGoal of losing weight."/> - <comment value="This extension is limited to subject-specific activity-related resources (events & intents). I.e. This can't be put on Goal or Patient. This association isn't for the purpose of goal management, but for things such as noting that a particular observation result, prescription or other activity is pertinent to the achievement (or possibly non-achievement) of the referenced goal."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-pertainsToGoal"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Goal"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-extends"/> - <resource> - <StructureDefinition> - <id value="diagnosticReport-extends"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-extends"/> - <version value="4.1.0"/> - <name value="extends"/> - <title value="Extends"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The report references related ("sibling") reports."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Related reports"/> - <definition value="The report references related ("sibling") reports."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-extends"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Related reports"/> - <definition value="The report references related ("sibling") reports."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-extends"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-usage"/> - <resource> - <StructureDefinition> - <id value="valueset-usage"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-usage"/> - <version value="4.1.0"/> - <name value="usage"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Consumers of the value set and the implementations, projects or standards that the author has utilized the value set in."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Who has used and how?"/> - <definition value="Consumers of the value set and the implementations, projects or standards that the author has utilized the value set in."/> - <comment value="This is likely to be a point-in-time view and should not be considered an authoritative listing of all uses of the value set."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:user"> - <path value="Extension.extension"/> - <sliceName value="user"/> - <short value="A consumer of or client for the value set"/> - <definition value="This is most likely to be an organization but can be an individual. It would not be a program, that information should be recorded in the usage.use."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:user.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:user.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:user.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="user"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:user.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:use"> - <path value="Extension.extension"/> - <sliceName value="use"/> - <short value="Implementation/project/standard that uses value set"/> - <definition value="A descriptive name of the project or standard in which the value set is used."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:use.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:use.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:use.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="use"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:use.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-usage"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Who has used and how?"/> - <definition value="Consumers of the value set and the implementations, projects or standards that the author has utilized the value set in."/> - <comment value="This is likely to be a point-in-time view and should not be considered an authoritative listing of all uses of the value set."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:user"> - <path value="Extension.extension"/> - <sliceName value="user"/> - <short value="A consumer of or client for the value set"/> - <definition value="This is most likely to be an organization but can be an individual. It would not be a program, that information should be recorded in the usage.use."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:user.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:user.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="user"/> - </element> - <element id="Extension.extension:user.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:use"> - <path value="Extension.extension"/> - <sliceName value="use"/> - <short value="Implementation/project/standard that uses value set"/> - <definition value="A descriptive name of the project or standard in which the value set is used."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:use.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:use.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="use"/> - </element> - <element id="Extension.extension:use.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-usage"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingOrganization"/> - <resource> - <StructureDefinition> - <id value="cqf-initiatingOrganization"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingOrganization"/> - <version value="4.1.0"/> - <name value="initiatingOrganization"/> - <title value="initiatingOrganization"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The organization initiating the request."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The organization initiating the request."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingOrganization"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The organization initiating the request."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-initiatingOrganization"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement-search-parameter-combination"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination"/> - <version value="4.1.0"/> - <name value="search-parameter-combination"/> - <title value="Search Parameter Combination"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="This extension defines a possible search parameter combination, by listing a set of search parameters and indicating whether they are required or optional. If a search combination is specified, clients should expect that they must submit a search that meets one of the required combinations or the search will be unsuccessful. If multiple search parameter combinations are specified, a client may pick between them, and supply the minimal required parameters for any of the combinations."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.resource"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An allowable parameter combination"/> - <definition value="This extension defines a possible search parameter combination, by listing a set of search parameters and indicating whether they are required or optional. If a search combination is specified, clients should expect that they must submit a search that meets one of the required combinations or the search will be unsuccessful. If multiple search parameter combinations are specified, a client may pick between them, and supply the minimal required parameters for any of the combinations."/> - <comment value="For example, on the Patient Resource you could use this to state support for searching by Patient.name and Patient.gender is required."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:required"> - <path value="Extension.extension"/> - <sliceName value="required"/> - <short value="A required search parameter name"/> - <definition value="A search parameter name in the combination which is required."/> - <min value="1"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:required.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:required.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="required"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional"> - <path value="Extension.extension"/> - <sliceName value="optional"/> - <short value="An optional search parameter name"/> - <definition value="A search parameter name in the combination which is optional."/> - <comment value="If a defined parameter is not listed as a required or optional parameter, the implication is that the parameter is not supported with this combination. Servers may ignore It, though some may return an error if it is used."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:optional.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:optional.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="optional"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An allowable parameter combination"/> - <definition value="This extension defines a possible search parameter combination, by listing a set of search parameters and indicating whether they are required or optional. If a search combination is specified, clients should expect that they must submit a search that meets one of the required combinations or the search will be unsuccessful. If multiple search parameter combinations are specified, a client may pick between them, and supply the minimal required parameters for any of the combinations."/> - <comment value="For example, on the Patient Resource you could use this to state support for searching by Patient.name and Patient.gender is required."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required"> - <path value="Extension.extension"/> - <sliceName value="required"/> - <short value="A required search parameter name"/> - <definition value="A search parameter name in the combination which is required."/> - <min value="1"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:required.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:required.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="required"/> - </element> - <element id="Extension.extension:required.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:optional"> - <path value="Extension.extension"/> - <sliceName value="optional"/> - <short value="An optional search parameter name"/> - <definition value="A search parameter name in the combination which is optional."/> - <comment value="If a defined parameter is not listed as a required or optional parameter, the implication is that the parameter is not supported with this combination. Servers may ignore It, though some may return an error if it is used."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:optional.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:optional.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="optional"/> - </element> - <element id="Extension.extension:optional.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-search-parameter-combination"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-expression"/> - <resource> - <StructureDefinition> - <id value="cqf-expression"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-expression"/> - <version value="4.1.0"/> - <name value="expression"/> - <title value="expression"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="An expression that, when evaluated, provides the value for the element on which it appears."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An dynamic expression"/> - <definition value="An expression that, when evaluated, provides the value for the element on which it appears."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-expression"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Expression"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An dynamic expression"/> - <definition value="An expression that, when evaluated, provides the value for the element on which it appears."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-expression"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Expression"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-severity"/> - <resource> - <StructureDefinition> - <id value="familymemberhistory-severity"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-severity"/> - <version value="4.1.0"/> - <name value="severity"/> - <title value="severity"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A qualification of the seriousness or impact on health of the family member condition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory.condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The seriousness of the family member condition"/> - <definition value="A qualification of the seriousness or impact on health of the family member condition."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-severity"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionSeverity"/> - </extension> - <strength value="example"/> - <description value="A subjective assessment of the severity of the condition as evaluated by the clinician."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-severity"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The seriousness of the family member condition"/> - <definition value="A qualification of the seriousness or impact on health of the family member condition."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-severity"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionSeverity"/> - </extension> - <strength value="example"/> - <description value="A subjective assessment of the severity of the condition as evaluated by the clinician."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-severity"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/condition-occurredFollowing"/> - <resource> - <StructureDefinition> - <id value="condition-occurredFollowing"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/condition-occurredFollowing"/> - <version value="4.1.0"/> - <name value="occurredFollowing"/> - <title value="occurredFollowing"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Further conditions, problems, diagnoses, procedures or events or the substance that preceded this Condition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Precedent for this Condition"/> - <definition value="Further conditions, problems, diagnoses, procedures or events or the substance that preceded this Condition."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value=".typeCode"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-occurredFollowing"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Immunization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationUsage"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionPredecessor"/> - </extension> - <strength value="example"/> - <description value="Codes that describe activities or observations that occurred prior to the condition."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-predecessor"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Precedent for this Condition"/> - <definition value="Further conditions, problems, diagnoses, procedures or events or the substance that preceded this Condition."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value=".typeCode"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-occurredFollowing"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Immunization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationUsage"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionPredecessor"/> - </extension> - <strength value="example"/> - <description value="Codes that describe activities or observations that occurred prior to the condition."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-predecessor"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-Instance"/> - <resource> - <StructureDefinition> - <id value="auditevent-Instance"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-Instance"/> - <version value="4.1.0"/> - <name value="Instance"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="Th SOP Instance UID values."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="SOP Instance UID value"/> - <definition value="Th SOP Instance UID values."/> - <comment value="Including the list of SOP Instances can create a large audit message. Under most circumstances, the list of SOP Instance UIDs is not needed for audit purposes."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="Instance"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Instance"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Identifier"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="SOP Instance UID value"/> - <definition value="Th SOP Instance UID values."/> - <comment value="Including the list of SOP Instances can create a large audit message. Under most circumstances, the list of SOP Instance UIDs is not needed for audit purposes."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="dicom"/> - <map value="Instance"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Instance"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Identifier"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryMode"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-deliveryMode"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryMode"/> - <version value="4.1.0"/> - <name value="ADXP-deliveryMode"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Indicates the type of service offered, method of delivery. For example: post office box, rural route, general delivery, etc."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryMode"/> - <definition value="Indicates the type of service offered, method of delivery. For example: post office box, rural route, general delivery, etc."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DMOD]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryMode"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryMode"/> - <definition value="Indicates the type of service offered, method of delivery. For example: post office box, rural route, general delivery, etc."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DMOD]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryMode"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-steward"/> - <resource> - <StructureDefinition> - <id value="valueset-steward"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-steward"/> - <version value="4.1.0"/> - <name value="steward"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The entity that is responsible for the content of the Value Set Definition. This is a textual description of the organizational entity responsible for the content and maintenance."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Entity responsible for Value Set"/> - <definition value="The entity that is responsible for the content of the Value Set Definition. This is a textual description of the organizational entity responsible for the content and maintenance."/> - <comment value="The information included should include contact information."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-steward"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="ContactDetail"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Entity responsible for Value Set"/> - <definition value="The entity that is responsible for the content of the Value Set Definition. This is a textual description of the organizational entity responsible for the content and maintenance."/> - <comment value="The information included should include contact information."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-steward"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="ContactDetail"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-bestpractice"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice"/> - <version value="4.1.0"/> - <name value="bestpractice"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Mark that an invariant represents 'best practice' rule - a rule that implementers may choose to enforce at error level in some or all circumstances."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.constraint"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Mark a warning invariant as 'best practice'"/> - <definition value="Mark that an invariant represents 'best practice' rule - a rule that implementers may choose to enforce at error level in some or all circumstances."/> - <comment value="Validators may/should offer implementers the choice to enforce invariants labeled as 'best practice' as errors not warnings."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConformanceUseContext"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="extensible"/> - <description value="Indicates the countries, regions, disciplines and other aspects of use within which this artifact is targeted for use."/> - <valueSet value="http://hl7.org/fhir/ValueSet/use-context"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Mark a warning invariant as 'best practice'"/> - <definition value="Mark that an invariant represents 'best practice' rule - a rule that implementers may choose to enforce at error level in some or all circumstances."/> - <comment value="Validators may/should offer implementers the choice to enforce invariants labeled as 'best practice' as errors not warnings."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConformanceUseContext"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="extensible"/> - <description value="Indicates the countries, regions, disciplines and other aspects of use within which this artifact is targeted for use."/> - <valueSet value="http://hl7.org/fhir/ValueSet/use-context"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAnalysis"/> - <resource> - <StructureDefinition> - <id value="DiagnosticReport-geneticsAnalysis"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAnalysis"/> - <version value="4.1.0"/> - <name value="Analysis"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Knowledge-based comments on the effect of the sequence on patient's condition/medication reaction."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Analysis"/> - <definition value="Knowledge-based comments on the effect of the sequence on patient's condition/medication reaction."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="Analysis type"/> - <definition value="Type of the analysis. E.g. for a drug, what is being analyzed - efficacy, reaction, the drug's effect on the user's metabolism, etc."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:interpretation"> - <path value="Extension.extension"/> - <sliceName value="interpretation"/> - <short value="Analysis interpretation"/> - <definition value="Interpretation of the sequence's effect on the patient's condition or reaction to a medication."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:interpretation.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:interpretation.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:interpretation.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="interpretation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:interpretation.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAnalysis"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Analysis"/> - <definition value="Knowledge-based comments on the effect of the sequence on patient's condition/medication reaction."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="Analysis type"/> - <definition value="Type of the analysis. E.g. for a drug, what is being analyzed - efficacy, reaction, the drug's effect on the user's metabolism, etc."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:interpretation"> - <path value="Extension.extension"/> - <sliceName value="interpretation"/> - <short value="Analysis interpretation"/> - <definition value="Interpretation of the sequence's effect on the patient's condition or reaction to a medication."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:interpretation.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:interpretation.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="interpretation"/> - </element> - <element id="Extension.extension:interpretation.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsAnalysis"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-xml-no-order"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-xml-no-order"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-xml-no-order"/> - <version value="4.1.0"/> - <name value="xml-no-order"/> - <title value="No Order in XML"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Whether elements can come in any order in XML."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether elements can come in any order (XML)"/> - <definition value="Whether elements can come in any order in XML."/> - <comment value="This is never set in FHIR Resources or Data types, but may be encountered in other structure definitions."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-xml-no-order"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether elements can come in any order (XML)"/> - <definition value="Whether elements can come in any order in XML."/> - <comment value="This is never set in FHIR Resources or Data types, but may be encountered in other structure definitions."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-xml-no-order"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/nutritionorder-adaptiveFeedingDevice"/> - <resource> - <StructureDefinition> - <id value="nutritionorder-adaptiveFeedingDevice"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/nutritionorder-adaptiveFeedingDevice"/> - <version value="4.1.0"/> - <name value="adaptiveFeedingDevice"/> - <title value="Adaptive Feeding Device"/> - <status value="draft"/> - <date value="2017-10-18"/> - <publisher value="Health Level Seven, Inc. - Orders and Observations WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="Materials used or needed to feed the patient."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="NutritionOrder.oralDiet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Adaptive Feeding Device"/> - <definition value="Materials used or needed to feed the patient."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/nutritionorder-adaptiveFeedingDevice"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FeedingDevice"/> - </extension> - <strength value="example"/> - <description value="Materials used or needed to feed the patient."/> - <valueSet value="http://hl7.org/fhir/ValueSet/feeding-device"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Adaptive Feeding Device"/> - <definition value="Materials used or needed to feed the patient."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/nutritionorder-adaptiveFeedingDevice"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FeedingDevice"/> - </extension> - <strength value="example"/> - <description value="Materials used or needed to feed the patient."/> - <valueSet value="http://hl7.org/fhir/ValueSet/feeding-device"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-preferenceType"/> - <resource> - <StructureDefinition> - <id value="patient-preferenceType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-preferenceType"/> - <version value="4.1.0"/> - <name value="preferenceType"/> - <title value="preferenceType"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Indicates what mode of communication the patient prefers to use for the indicated language."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient.communication.preferred"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The type of the patient's preferred language."/> - <definition value="Indicates what mode of communication the patient prefers to use for the indicated language."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-preferenceType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="LanguagePreferenceType"/> - </extension> - <strength value="extensible"/> - <valueSet value="http://hl7.org/fhir/ValueSet/language-preference-type"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The type of the patient's preferred language."/> - <definition value="Indicates what mode of communication the patient prefers to use for the indicated language."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-preferenceType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="LanguagePreferenceType"/> - </extension> - <strength value="extensible"/> - <valueSet value="http://hl7.org/fhir/ValueSet/language-preference-type"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/maxValue"/> - <resource> - <StructureDefinition> - <id value="maxValue"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/maxValue"/> - <version value="4.1.0"/> - <name value="maxValue"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="The inclusive upper bound on the range of allowed values for the data element."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Must be <= this value"/> - <definition value="The inclusive upper bound on the range of allowed values for the data element."/> - <comment value="Data type specified must be the same as the data type for the data element."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/maxValue"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Must be <= this value"/> - <definition value="The inclusive upper bound on the range of allowed values for the data element."/> - <comment value="Data type specified must be the same as the data type for the data element."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/maxValue"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/relative-date"/> - <resource> - <StructureDefinition> - <id value="relative-date"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/relative-date"/> - <version value="4.1.0"/> - <name value="Relative Date Criteria"/> - <title value="Relative Date Criteria"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Specifies that a date is relative to some event. The event happens [Duration] after [Event]."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="date"/> - </context> - <context> - <type value="element"/> - <expression value="dateTime"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Relative Date Criteria"/> - <definition value="Specifies that a date is relative to some event. The event happens [Duration] after [Event]."/> - <comment value="This extension is used when a precise date is not known, but rather, the date will be relative to some future event (e.g. Do this 2 weeks after an operation)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:event"> - <path value="Extension.extension"/> - <sliceName value="event"/> - <short value="Event that the date is relative to"/> - <definition value="The event that the date(time) is relative to."/> - <comment value="This can be a reference to a particular event, or a kind of event (usually where the kind would not happen very frequently)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:event.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:event.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:event.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="event"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:event.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:relationship"> - <path value="Extension.extension"/> - <sliceName value="relationship"/> - <short value="before-start | before | before-end | concurrent-with-start | concurrent | concurrent-with-end | after-start | after | after-end"/> - <definition value="Defines the relationship between the event and the date."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:relationship.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:relationship.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:relationship.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="relationship"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:relationship.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ActionRelationshipType"/> - </extension> - <strength value="required"/> - <description value="Defines the types of relationships between actions."/> - <valueSet value="http://hl7.org/fhir/ValueSet/action-relationship-type|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:offset"> - <path value="Extension.extension"/> - <sliceName value="offset"/> - <short value="Duration after the event"/> - <definition value="The duration after the event that the date(time) will happen."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:offset.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:offset.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:offset.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:offset.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Duration"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/relative-date"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Relative Date Criteria"/> - <definition value="Specifies that a date is relative to some event. The event happens [Duration] after [Event]."/> - <comment value="This extension is used when a precise date is not known, but rather, the date will be relative to some future event (e.g. Do this 2 weeks after an operation)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:event"> - <path value="Extension.extension"/> - <sliceName value="event"/> - <short value="Event that the date is relative to"/> - <definition value="The event that the date(time) is relative to."/> - <comment value="This can be a reference to a particular event, or a kind of event (usually where the kind would not happen very frequently)."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:event.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:event.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="event"/> - </element> - <element id="Extension.extension:event.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:relationship"> - <path value="Extension.extension"/> - <sliceName value="relationship"/> - <short value="before-start | before | before-end | concurrent-with-start | concurrent | concurrent-with-end | after-start | after | after-end"/> - <definition value="Defines the relationship between the event and the date."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:relationship.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:relationship.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="relationship"/> - </element> - <element id="Extension.extension:relationship.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ActionRelationshipType"/> - </extension> - <strength value="required"/> - <description value="Defines the types of relationships between actions."/> - <valueSet value="http://hl7.org/fhir/ValueSet/action-relationship-type|4.1.0"/> - </binding> - </element> - <element id="Extension.extension:offset"> - <path value="Extension.extension"/> - <sliceName value="offset"/> - <short value="Duration after the event"/> - <definition value="The duration after the event that the date(time) will happen."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:offset.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:offset.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - </element> - <element id="Extension.extension:offset.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Duration"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/relative-date"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/event-statusReason"/> - <resource> - <StructureDefinition> - <id value="event-statusReason"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/event-statusReason"/> - <version value="4.1.0"/> - <name value="statusReason"/> - <title value="Reason for current status"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Captures the reason for the current state of the resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyDelivery"/> - </context> - <context> - <type value="element"/> - <expression value="DeviceUseStatement"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reason for current status"/> - <definition value="Captures the reason for the current state of the resource."/> - <comment value="This is generally only used for "exception" statuses such as "not-done", "suspended" or "cancelled". The reason for performing the event at all is captured in reasonCode, not here. (distinct reason codes for different statuses can be enforced using invariants if they are universal bindings)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.statusReason"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship[typeCode=SUBJ].source[classCode=CACT, moodCode=EVN].reasonCOde"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-statusReason"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StatusReason"/> - </extension> - <strength value="example"/> - <description value="Codes identifying the reason for the current state of an event."/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reason for current status"/> - <definition value="Captures the reason for the current state of the resource."/> - <comment value="This is generally only used for "exception" statuses such as "not-done", "suspended" or "cancelled". The reason for performing the event at all is captured in reasonCode, not here. (distinct reason codes for different statuses can be enforced using invariants if they are universal bindings)."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="workflow"/> - <map value="Event.statusReason"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship[typeCode=SUBJ].source[classCode=CACT, moodCode=EVN].reasonCOde"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-statusReason"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StatusReason"/> - </extension> - <strength value="example"/> - <description value="Codes identifying the reason for the current state of an event."/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence"/> - <resource> - <StructureDefinition> - <id value="cqf-qualityOfEvidence"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence"/> - <version value="4.1.0"/> - <name value="qualityOfEvidence"/> - <title value="qualityOfEvidence"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The quality of the evidence described. The code system used specifies the quality scale used to grade this evidence source while the code specifies the actual quality score (represented as a coded value) associated with the evidence."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Attachment"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The quality of the evidence"/> - <definition value="The quality of the evidence described. The code system used specifies the quality scale used to grade this evidence source while the code specifies the actual quality score (represented as a coded value) associated with the evidence."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QualityOfEvidenceRating"/> - </extension> - <strength value="example"/> - <description value="A rating system that describes the quality of evidence such as the GRADE, DynaMed, or Oxford CEBM systems."/> - <valueSet value="http://hl7.org/fhir/ValueSet/evidence-quality"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The quality of the evidence"/> - <definition value="The quality of the evidence described. The code system used specifies the quality scale used to grade this evidence source while the code specifies the actual quality score (represented as a coded value) associated with the evidence."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-qualityOfEvidence"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QualityOfEvidenceRating"/> - </extension> - <strength value="example"/> - <description value="A rating system that describes the quality of evidence such as the GRADE, DynaMed, or Oxford CEBM systems."/> - <valueSet value="http://hl7.org/fhir/ValueSet/evidence-quality"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/replaces"/> - <resource> - <StructureDefinition> - <id value="replaces"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/replaces"/> - <version value="4.1.0"/> - <name value="replaces"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Indicates a resource that this resource is replacing."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ActivityDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement2"/> - </context> - <context> - <type value="element"/> - <expression value="ChargeItemDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <context> - <type value="element"/> - <expression value="CompartmentDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="ConceptMap"/> - </context> - <context> - <type value="element"/> - <expression value="ConditionDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="EventDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="Evidence"/> - </context> - <context> - <type value="element"/> - <expression value="EvidenceVariable"/> - </context> - <context> - <type value="element"/> - <expression value="ExampleScenario"/> - </context> - <context> - <type value="element"/> - <expression value="GraphDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="ImplementationGuide"/> - </context> - <context> - <type value="element"/> - <expression value="Library"/> - </context> - <context> - <type value="element"/> - <expression value="Measure"/> - </context> - <context> - <type value="element"/> - <expression value="MessageDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="NamingSystem"/> - </context> - <context> - <type value="element"/> - <expression value="OperationDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="PlanDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire"/> - </context> - <context> - <type value="element"/> - <expression value="SearchParameter"/> - </context> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="StructureMap"/> - </context> - <context> - <type value="element"/> - <expression value="TerminologyCapabilities"/> - </context> - <context> - <type value="element"/> - <expression value="TestScript"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="References a resource that this resource replaces"/> - <definition value="Indicates a resource that this resource is replacing."/> - <comment value="This is usually a versioned reference. Often, it will be to another version of the same resource."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/replaces"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="References a resource that this resource replaces"/> - <definition value="Indicates a resource that this resource is replacing."/> - <comment value="This is usually a versioned reference. Often, it will be to another version of the same resource."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/replaces"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reason"/> - <resource> - <StructureDefinition> - <id value="questionnaireresponse-reason"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reason"/> - <version value="4.1.0"/> - <name value="reason"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="The factor(s) that caused the questionnaire to be answered."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Why response was created"/> - <definition value="The factor(s) that caused the questionnaire to be answered."/> - <comment value="The reason for completion is typically implicit in the form design or may be explicit as a question in the form itself. This element exists when neither of these other two means suffice."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reason"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QuestionnaireResponseReason"/> - </extension> - <strength value="example"/> - <description value="Codes indicating why the response was captured. For example, admitting, referral, insurance claim, etc."/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Why response was created"/> - <definition value="The factor(s) that caused the questionnaire to be answered."/> - <comment value="The reason for completion is typically implicit in the form design or may be explicit as a question in the form itself. This element exists when neither of these other two means suffice."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reason"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QuestionnaireResponseReason"/> - </extension> - <strength value="example"/> - <description value="Codes indicating why the response was captured. For example, admitting, referral, insurance claim, etc."/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/careplan-activity-title"/> - <resource> - <StructureDefinition> - <id value="careplan-activity-title"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/careplan-activity-title"/> - <version value="4.1.0"/> - <name value="activity-title"/> - <title value="Title"/> - <status value="draft"/> - <date value="2015-03-27"/> - <publisher value="Health Level Seven, Inc. - Patient Care WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/patientcare.html"/> - </telecom> - </contact> - <description value="Human-friendly name for the activity."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CarePlan.activity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Label for activity"/> - <definition value="Human-friendly name for the activity."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/careplan-activity-title"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Label for activity"/> - <definition value="Human-friendly name for the activity."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/careplan-activity-title"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsCopyNumberEvent"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsCopyNumberEvent"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsCopyNumberEvent"/> - <version value="4.1.0"/> - <name value="CopyNumberEvent"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="A variation that increases or decreases the copy number of a given region ([SO:0001019](http://www.sequenceontology.org/browser/current_svn/term/SO:0001019)). Values: amplification/deletion/LOH."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Copy number variation"/> - <definition value="A variation that increases or decreases the copy number of a given region ([SO:0001019](http://www.sequenceontology.org/browser/current_svn/term/SO:0001019)). Values: amplification/deletion/LOH."/> - <comment value="Loss of heterozygosity (LOH) is a functional variant whereby the sequence alteration causes a loss of function of one allele of a gene ([SO:0001786](http://www.sequenceontology.org/browser/current_svn/term/SO:0001786))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsCopyNumberEvent"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Copy number variation"/> - <definition value="A variation that increases or decreases the copy number of a given region ([SO:0001019](http://www.sequenceontology.org/browser/current_svn/term/SO:0001019)). Values: amplification/deletion/LOH."/> - <comment value="Loss of heterozygosity (LOH) is a functional variant whereby the sequence alteration causes a loss of function of one allele of a gene ([SO:0001786](http://www.sequenceontology.org/browser/current_svn/term/SO:0001786))."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsCopyNumberEvent"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-standards-status"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status"/> - <version value="4.1.0"/> - <name value="standards-status"/> - <title value="Standards Status"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The Current HL7 ballot/Standards status of this artifact."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="HL7 Ballot/Standards status of artifact"/> - <definition value="The Current HL7 ballot/Standards status of this artifact."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StandardsStatus"/> - </extension> - <strength value="required"/> - <description value="HL7 Ballot/Standards status of artifact."/> - <valueSet value="http://hl7.org/fhir/ValueSet/standards-status|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="HL7 Ballot/Standards status of artifact"/> - <definition value="The Current HL7 ballot/Standards status of this artifact."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-standards-status"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StandardsStatus"/> - </extension> - <strength value="required"/> - <description value="HL7 Ballot/Standards status of artifact."/> - <valueSet value="http://hl7.org/fhir/ValueSet/standards-status|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-PQ-translation"/> - <resource> - <StructureDefinition> - <id value="iso21090-PQ-translation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-PQ-translation"/> - <version value="4.1.0"/> - <name value="PQ-translation"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="An alternative representation of the same physical quantity expressed in a different unit from a different unit code system and possibly with a different value."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Quantity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Same quantity with different units"/> - <definition value="An alternative representation of the same physical quantity expressed in a different unit from a different unit code system and possibly with a different value."/> - <comment value="It is not necessary for information processing entities to check and enforce that the translations are valid translations of the base unit, but they are allowed to do so, and to reject instances where the translations are not valid. NOTE Translations are allowed to contain other representations in UCUM units, but there is generally no point to this as it is possible to convert from one UCUM form to another."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="PQ.translation"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-PQ-translation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Quantity"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Same quantity with different units"/> - <definition value="An alternative representation of the same physical quantity expressed in a different unit from a different unit code system and possibly with a different value."/> - <comment value="It is not necessary for information processing entities to check and enforce that the translations are valid translations of the base unit, but they are allowed to do so, and to reject instances where the translations are not valid. NOTE Translations are allowed to contain other representations in UCUM units, but there is generally no point to this as it is possible to convert from one UCUM form to another."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="PQ.translation"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-PQ-translation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Quantity"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/consent-NotificationEndpoint"/> - <resource> - <StructureDefinition> - <id value="consent-NotificationEndpoint"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="cbcc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/consent-NotificationEndpoint"/> - <version value="4.1.0"/> - <name value="NotificationEndpoint"/> - <title value="Disclosure Notification Endpoint"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - CBCC WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/homehealth/index.cfm"/> - </telecom> - </contact> - <description value="Endpoint for sending Disclosure notifications in the form of FHIR AuditEvent records."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Consent"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Notification Endpoint"/> - <definition value="Endpoint for sending Disclosure notifications in the form of FHIR AuditEvent records."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-NotificationEndpoint"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Notification Endpoint"/> - <definition value="Endpoint for sending Disclosure notifications in the form of FHIR AuditEvent records."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-NotificationEndpoint"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-receivingPerson"/> - <resource> - <StructureDefinition> - <id value="cqf-receivingPerson"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-receivingPerson"/> - <version value="4.1.0"/> - <name value="receivingPerson"/> - <title value="receivingPerson"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The person in the receiving organization that will receive the response."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The person in the receiving organization that will receive the response."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-receivingPerson"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Person"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The person in the receiving organization that will receive the response."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-receivingPerson"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Person"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/request-performerOrder"/> - <resource> - <StructureDefinition> - <id value="request-performerOrder"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/request-performerOrder"/> - <version value="4.1.0"/> - <name value="performerOrder"/> - <title value="Performer Order"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Identifies the relative preference of alternative performers when the request lists multiple performers."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ServiceRequest.performer"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Performer Order"/> - <definition value="Identifies the relative preference of alternative performers when the request lists multiple performers."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-performerOrder"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Performer Order"/> - <definition value="Identifies the relative preference of alternative performers when the request lists multiple performers."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-performerOrder"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-map"/> - <resource> - <StructureDefinition> - <id value="codesystem-map"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-map"/> - <version value="4.1.0"/> - <name value="map"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A reference to a concept map that is relevant for the interpretation of this value set."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A concept map relevant to interpret this value set"/> - <definition value="A reference to a concept map that is relevant for the interpretation of this value set."/> - <comment value="One use of this extension is to use it to include a partial concept map inside an expansion, only containing maps for the concepts included in this particular expansion."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-map"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ConceptMap"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A concept map relevant to interpret this value set"/> - <definition value="A reference to a concept map that is relevant for the interpretation of this value set."/> - <comment value="One use of this extension is to use it to include a partial concept map inside an expansion, only containing maps for the concepts included in this particular expansion."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-map"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ConceptMap"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-focusCode"/> - <resource> - <StructureDefinition> - <id value="observation-focusCode"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-focusCode"/> - <version value="4.1.0"/> - <name value="focusCode"/> - <title value="Focal Subject Code"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="A code representing the focus of an observation when the focus is not the patient of record. In other words, the focus of the observation is different from `Observation.subject`. An example use case would be using the *Observation* resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is focal subject referenced using this extension. Other example focal subjects include spouses, related persons, feti, or donors."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Focus Code"/> - <definition value="A code representing the focus of an observation when the focus is not the patient of record. In other words, the focus of the observation is different from `Observation.subject`. An example use case would be using the *Observation* resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is focal subject referenced using this extension. Other example focal subjects include spouses, related persons, feti, or donors."/> - <comment value="Use Observation.specimen element to describe the specimen. Only used if not implicit in code found in Observation.code."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-focusCode"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FocusCode"/> - </extension> - <strength value="example"/> - <description value="Codes for observation targets. Derived from both HL7 v3 and SNOMED CT code systems."/> - <valueSet value="http://hl7.org/fhir/ValueSet/focal-subject"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Focus Code"/> - <definition value="A code representing the focus of an observation when the focus is not the patient of record. In other words, the focus of the observation is different from `Observation.subject`. An example use case would be using the *Observation* resource to capture whether the mother is trained to change her child's tracheostomy tube. In this example, the child is the patient of record and the mother is focal subject referenced using this extension. Other example focal subjects include spouses, related persons, feti, or donors."/> - <comment value="Use Observation.specimen element to describe the specimen. Only used if not implicit in code found in Observation.code."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-focusCode"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FocusCode"/> - </extension> - <strength value="example"/> - <description value="Codes for observation targets. Derived from both HL7 v3 and SNOMED CT code systems."/> - <valueSet value="http://hl7.org/fhir/ValueSet/focal-subject"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-namespace"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-namespace"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-namespace"/> - <version value="4.1.0"/> - <name value="namespace"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Use this extension to indicate tha the element has an XML namespace different to http://hl7.org/fhir."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="specify namespace other than http://hl7.org/fhir"/> - <definition value="Use this extension to indicate tha the element has an XML namespace different to http://hl7.org/fhir."/> - <comment value="If this is specified in a structure definition (logical models only), every element has the specified namespace."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-namespace"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="specify namespace other than http://hl7.org/fhir"/> - <definition value="Use this extension to indicate tha the element has an XML namespace different to http://hl7.org/fhir."/> - <comment value="If this is specified in a structure definition (logical models only), every element has the specified namespace."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-namespace"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-Anonymized"/> - <resource> - <StructureDefinition> - <id value="auditevent-Anonymized"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-Anonymized"/> - <version value="4.1.0"/> - <name value="Anonymized"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="True or False indicating whether all patient identifying information was removed from the data."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Anonymized state"/> - <definition value="True or False indicating whether all patient identifying information was removed from the data."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="Anonymized"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Anonymized"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Anonymized state"/> - <definition value="True or False indicating whether all patient identifying information was removed from the data."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="dicom"/> - <map value="Anonymized"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-Anonymized"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-dependencies"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies"/> - <version value="4.1.0"/> - <name value="dependencies"/> - <title value="Dependent Profiles"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Instances can only be valid against this StructureDefinition, if they also sucessfully validate against the dependent profile identified in this extension."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Dependent Profiles - must be valid against these too"/> - <definition value="Instances can only be valid against this StructureDefinition, if they also sucessfully validate against the dependent profile identified in this extension."/> - <comment value="Ideally, a profile will restate the constraints of it's base profile and all it's dependent profiles, but this can get pretty complicated once slicing enters the picture. Tools SHOULD not assume that this profile includes all the constraints from the dependent profile."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/StructureDefinition"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Dependent Profiles - must be valid against these too"/> - <definition value="Instances can only be valid against this StructureDefinition, if they also sucessfully validate against the dependent profile identified in this extension."/> - <comment value="Ideally, a profile will restate the constraints of it's base profile and all it's dependent profiles, but this can get pretty complicated once slicing enters the picture. Tools SHOULD not assume that this profile includes all the constraints from the dependent profile."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-dependencies"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/StructureDefinition"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-initialValue"/> - <resource> - <StructureDefinition> - <id value="cqf-initialValue"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-initialValue"/> - <version value="4.1.0"/> - <name value="initialValue"/> - <title value="initialValue"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The name of an expression in a referenced library that determines an initial value."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An initial value expression"/> - <definition value="The name of an expression in a referenced library that determines an initial value."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-initialValue"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An initial value expression"/> - <definition value="The name of an expression in a referenced library that determines an initial value."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-initialValue"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-delimiter"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-delimiter"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-delimiter"/> - <version value="4.1.0"/> - <name value="ADXP-delimiter"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Delimiters are printed without framing white space. If no value component is provided, the delimiter appears as a line break."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="delimiter"/> - <definition value="Delimiters are printed without framing white space. If no value component is provided, the delimiter appears as a line break."/> - <comment value="This really has no rationale for use in FHIR."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DEL]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-delimiter"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="delimiter"/> - <definition value="Delimiters are printed without framing white space. If no value component is provided, the delimiter appears as a line break."/> - <comment value="This really has no rationale for use in FHIR."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DEL]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-delimiter"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-inheritedExtensibleValueSet"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-inheritedExtensibleValueSet"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-inheritedExtensibleValueSet"/> - <version value="4.1.0"/> - <name value="inheritedExtensibleValueSet"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A reference to an extensible value set specified in a parent profie in order to allow a conformance checking tool to validate that a code not in the extensible value set of the profile is not violating rules defined by parent profile bindings."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.binding"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An extensible Value Set specified in a parent profile"/> - <definition value="A reference to an extensible value set specified in a parent profie in order to allow a conformance checking tool to validate that a code not in the extensible value set of the profile is not violating rules defined by parent profile bindings."/> - <comment value="This extension is only needed where the binding strength is 'extensible', the parents are also 'extensible'. This allows a validator to work around the fact that restricting extensible value sets in child profiles loses constraints out of the parent profiles, (e.g. codes to be used when appropriate)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-inheritedExtensibleValueSet"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An extensible Value Set specified in a parent profile"/> - <definition value="A reference to an extensible value set specified in a parent profie in order to allow a conformance checking tool to validate that a code not in the extensible value set of the profile is not violating rules defined by parent profile bindings."/> - <comment value="This extension is only needed where the binding strength is 'extensible', the parents are also 'extensible'. This allows a validator to work around the fact that restricting extensible value sets in child profiles loses constraints out of the parent profiles, (e.g. codes to be used when appropriate)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-inheritedExtensibleValueSet"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/event-basedOn"/> - <resource> - <StructureDefinition> - <id value="event-basedOn"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/event-basedOn"/> - <version value="4.1.0"/> - <name value="basedOn"/> - <title value="Based On"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="A plan, proposal or order that is fulfilled in whole or in part by this event."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Fulfills plan, proposal or order"/> - <definition value="A plan, proposal or order that is fulfilled in whole or in part by this event."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.basedOn"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="ORC in proximity to EVN segment"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=FLFS].target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-basedOn"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Fulfills plan, proposal or order"/> - <definition value="A plan, proposal or order that is fulfilled in whole or in part by this event."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.basedOn"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="ORC in proximity to EVN segment"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=FLFS].target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-basedOn"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsInterpretation"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsInterpretation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsInterpretation"/> - <version value="4.1.0"/> - <name value="Interpretation"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Clinical Interpretations for variant. It's a reference to an Observation resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Clinical interpretations for variant"/> - <definition value="Clinical Interpretations for variant. It's a reference to an Observation resource."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsInterpretation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Clinical interpretations for variant"/> - <definition value="Clinical Interpretations for variant. It's a reference to an Observation resource."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsInterpretation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-congregation"/> - <resource> - <StructureDefinition> - <id value="patient-congregation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-congregation"/> - <version value="4.1.0"/> - <name value="congregation"/> - <title value="congregation"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A group or place of religious practice that may provide services to the patient."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A group of place of religious practice"/> - <definition value="A group or place of religious practice that may provide services to the patient."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-congregation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A group of place of religious practice"/> - <definition value="A group or place of religious practice that may provide services to the patient."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-congregation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDescription"/> - <resource> - <StructureDefinition> - <id value="openEHR-exposureDescription"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDescription"/> - <version value="4.1.0"/> - <name value="exposureDescription"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Text description about exposure to the Substance."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Text description about exposure to the Substance"/> - <definition value="Text description about exposure to the Substance."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDescription"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Text description about exposure to the Substance"/> - <definition value="Text description about exposure to the Substance."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDescription"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-proficiency"/> - <resource> - <StructureDefinition> - <id value="patient-proficiency"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-proficiency"/> - <version value="4.1.0"/> - <name value="proficiency"/> - <title value="proficiency"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Proficiency level of the communication."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient.communication"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Proficiency level of the communication"/> - <definition value="Proficiency level of the communication."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:level"> - <path value="Extension.extension"/> - <sliceName value="level"/> - <short value="The proficiency level of the communication"/> - <definition value="How well the patient can communicate this communication (good, poor, etc.)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:level.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:level.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:level.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="level"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:level.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ProficiencyLevel"/> - </extension> - <strength value="preferred"/> - <description value="The proficiency level for the communication."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-LanguageAbilityProficiency"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="The proficiency type of the communication"/> - <definition value="What type of communication for the proficiency (spoken, written, etc.)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="proficiencyType"/> - </extension> - <strength value="preferred"/> - <description value="The proficiency type for the communication."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-LanguageAbilityMode"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-proficiency"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Proficiency level of the communication"/> - <definition value="Proficiency level of the communication."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:level"> - <path value="Extension.extension"/> - <sliceName value="level"/> - <short value="The proficiency level of the communication"/> - <definition value="How well the patient can communicate this communication (good, poor, etc.)."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:level.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:level.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="level"/> - </element> - <element id="Extension.extension:level.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ProficiencyLevel"/> - </extension> - <strength value="preferred"/> - <description value="The proficiency level for the communication."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-LanguageAbilityProficiency"/> - </binding> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="The proficiency type of the communication"/> - <definition value="What type of communication for the proficiency (spoken, written, etc.)."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="proficiencyType"/> - </extension> - <strength value="preferred"/> - <description value="The proficiency type for the communication."/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-LanguageAbilityMode"/> - </binding> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-proficiency"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-caseSensitive"/> - <resource> - <StructureDefinition> - <id value="valueset-caseSensitive"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-caseSensitive"/> - <version value="4.1.0"/> - <name value="caseSensitive"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="If this a case sensitive code."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.expansion.contains"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="If code is case sensitive"/> - <definition value="If this a case sensitive code."/> - <comment value="See comments on ValueSet.codeSystem.caseSensitive. Systems should generally assume case sensitivity when dealing with expansions, and only consider case sensitivity when matching existing codes."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-caseSensitive"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="If code is case sensitive"/> - <definition value="If this a case sensitive code."/> - <comment value="See comments on ValueSet.codeSystem.caseSensitive. Systems should generally assume case sensitivity when dealing with expansions, and only consider case sensitivity when matching existing codes."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-caseSensitive"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/geolocation"/> - <resource> - <StructureDefinition> - <id value="geolocation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/geolocation"/> - <version value="4.1.0"/> - <name value="Geolocation"/> - <title value="Geolocation"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="The absolute geographic location of the Location, expressed using the WGS84 datum (This is the same co-ordinate system used in KML)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The absolute geographic location"/> - <definition value="The absolute geographic location of the Location, expressed using the WGS84 datum (This is the same co-ordinate system used in KML)."/> - <comment value="The extension can be further extended to include unique geolocation identifiers, confidence, altitude, etc."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:latitude"> - <path value="Extension.extension"/> - <sliceName value="latitude"/> - <short value="Latitude with WGS84 datum"/> - <definition value="Latitude. The value domain and the interpretation are the same as for the text of the latitude element in KML (see notes below)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:latitude.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:latitude.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:latitude.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="latitude"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:latitude.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="decimal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:longitude"> - <path value="Extension.extension"/> - <sliceName value="longitude"/> - <short value="Longitude with WGS84 datum"/> - <definition value="Longitude. The value domain and the interpretation are the same as for the text of the longitude element in KML (see notes below)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:longitude.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:longitude.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:longitude.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="longitude"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:longitude.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="decimal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/geolocation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The absolute geographic location"/> - <definition value="The absolute geographic location of the Location, expressed using the WGS84 datum (This is the same co-ordinate system used in KML)."/> - <comment value="The extension can be further extended to include unique geolocation identifiers, confidence, altitude, etc."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:latitude"> - <path value="Extension.extension"/> - <sliceName value="latitude"/> - <short value="Latitude with WGS84 datum"/> - <definition value="Latitude. The value domain and the interpretation are the same as for the text of the latitude element in KML (see notes below)."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:latitude.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:latitude.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="latitude"/> - </element> - <element id="Extension.extension:latitude.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="decimal"/> - </type> - </element> - <element id="Extension.extension:longitude"> - <path value="Extension.extension"/> - <sliceName value="longitude"/> - <short value="Longitude with WGS84 datum"/> - <definition value="Longitude. The value domain and the interpretation are the same as for the text of the longitude element in KML (see notes below)."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:longitude.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:longitude.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="longitude"/> - </element> - <element id="Extension.extension:longitude.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="decimal"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/geolocation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-citation"/> - <resource> - <StructureDefinition> - <id value="cqf-citation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-citation"/> - <version value="4.1.0"/> - <name value="citation"/> - <title value="citation"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="A bibliographic citation for the related resource. This text SHOULD be formatted according to an accepted citation format."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Attachment"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Bibliographic citation for the resource"/> - <definition value="A bibliographic citation for the related resource. This text SHOULD be formatted according to an accepted citation format."/> - <comment value="Additional structured information about citations should be captured as extensions."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-citation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Bibliographic citation for the resource"/> - <definition value="A bibliographic citation for the related resource. This text SHOULD be formatted according to an accepted citation format."/> - <comment value="Additional structured information about citations should be captured as extensions."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-citation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDate"/> - <resource> - <StructureDefinition> - <id value="openEHR-exposureDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDate"/> - <version value="4.1.0"/> - <name value="exposureDate"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Record of the date and/or time of the first exposure to the Substance for this Reaction Event."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Date(/time) of first exposure to Substance"/> - <definition value="Record of the date and/or time of the first exposure to the Substance for this Reaction Event."/> - <comment value="Exposure can be more complicated by more than one exposure events leading to a reaction. Further details about the nature of the exposure can be provided in additional extensions, or as text in the Exposure Description extension."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Date(/time) of first exposure to Substance"/> - <definition value="Record of the date and/or time of the first exposure to the Substance for this Reaction Event."/> - <comment value="Exposure can be more complicated by more than one exposure events leading to a reaction. Further details about the nature of the exposure can be provided in additional extensions, or as text in the Exposure Description extension."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-exposureDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/auditevent-SOPClass"/> - <resource> - <StructureDefinition> - <id value="auditevent-SOPClass"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sec"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/auditevent-SOPClass"/> - <version value="4.1.0"/> - <name value="SOPClass"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - Security WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/security/index.cfm"/> - </telecom> - </contact> - <description value="Required if ParticipantObjectIDTypeCode is (110180, DCM, "Study Instance UID") and any of the optional fields (AccessionNumber, ContainsMPPS, NumberOfInstances, ContainsSOPInstances,Encrypted,Anonymized) are present in this Participant Object. May be present if ParticipantObjectIDTypeCode is (110180, DCM, "Study Instance UID") even though none of the optional fields are present."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="dicom"/> - <uri value="http://nema.org/dicom"/> - <name value="DICOM Tag Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AuditEvent.entity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="UIDs of SOP classes referred to"/> - <definition value="Required if ParticipantObjectIDTypeCode is (110180, DCM, "Study Instance UID") and any of the optional fields (AccessionNumber, ContainsMPPS, NumberOfInstances, ContainsSOPInstances,Encrypted,Anonymized) are present in this Participant Object. May be present if ParticipantObjectIDTypeCode is (110180, DCM, "Study Instance UID") even though none of the optional fields are present."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="dicom"/> - <map value="SOPClass"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-SOPClass"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ImagingStudy"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="UIDs of SOP classes referred to"/> - <definition value="Required if ParticipantObjectIDTypeCode is (110180, DCM, "Study Instance UID") and any of the optional fields (AccessionNumber, ContainsMPPS, NumberOfInstances, ContainsSOPInstances,Encrypted,Anonymized) are present in this Participant Object. May be present if ParticipantObjectIDTypeCode is (110180, DCM, "Study Instance UID") even though none of the optional fields are present."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="dicom"/> - <map value="SOPClass"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/auditevent-SOPClass"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ImagingStudy"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/request-relevantHistory"/> - <resource> - <StructureDefinition> - <id value="request-relevantHistory"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/request-relevantHistory"/> - <version value="4.1.0"/> - <name value="relevantHistory"/> - <title value="Relevant History"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <context> - <type value="element"/> - <expression value="CommunicationRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Key events in history of request"/> - <definition value="Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource."/> - <comment value="This element does not point to the Provenance associated with the *current* version of the resource - as it would be created after this version existed. The Provenance for the current version can be retrieved with a _revinclude. Referenced provenances should adhere to the provenance-relevant-history profile."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship(typeCode=SUBJ].source[classCode=CACT, moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-relevantHistory"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Provenance"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Key events in history of request"/> - <definition value="Links to Provenance records for past versions of this resource or fulfilling request or event resources that identify key state transitions or updates that are likely to be relevant to a user looking at the current version of the resource."/> - <comment value="This element does not point to the Provenance associated with the *current* version of the resource - as it would be created after this version existed. The Provenance for the current version can be retrieved with a _revinclude. Referenced provenances should adhere to the provenance-relevant-history profile."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship(typeCode=SUBJ].source[classCode=CACT, moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-relevantHistory"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Provenance"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-expirationDate"/> - <resource> - <StructureDefinition> - <id value="codesystem-expirationDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-expirationDate"/> - <version value="4.1.0"/> - <name value="expirationDate"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The date when the value set version is no longer expected to be used to create new content. This is the first date-time when the value set version becomes Inactive, so this value MUST present on all Inactive value set versions. The start Date_time is expected to be as of 0001 UTC of the Expiration Date."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version should no longer be used"/> - <definition value="The date when the value set version is no longer expected to be used to create new content. This is the first date-time when the value set version becomes Inactive, so this value MUST present on all Inactive value set versions. The start Date_time is expected to be as of 0001 UTC of the Expiration Date."/> - <comment value="Upon reaching the Expiration Date, the value set Activity Status should be consdiered as inactive. An Inactive value set version may no longer be used to create new content, but it may be used to evaluate content created prior to the Expiration Date."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-expirationDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version should no longer be used"/> - <definition value="The date when the value set version is no longer expected to be used to create new content. This is the first date-time when the value set version becomes Inactive, so this value MUST present on all Inactive value set versions. The start Date_time is expected to be as of 0001 UTC of the Expiration Date."/> - <comment value="Upon reaching the Expiration Date, the value set Activity Status should be consdiered as inactive. An Inactive value set version may no longer be used to create new content, but it may be used to evaluate content created prior to the Expiration Date."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-expirationDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-disability"/> - <resource> - <StructureDefinition> - <id value="patient-disability"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-disability"/> - <version value="4.1.0"/> - <name value="disability"/> - <title value="disability"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Value(s) identifying physical or mental condition(s) that limits a person's movements, senses, or activities."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Condition(s) limiting movement, senses, or activities"/> - <definition value="Value(s) identifying physical or mental condition(s) that limits a person's movements, senses, or activities."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-disability"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Condition(s) limiting movement, senses, or activities"/> - <definition value="Value(s) identifying physical or mental condition(s) that limits a person's movements, senses, or activities."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-disability"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/specimen-processingTime"/> - <resource> - <StructureDefinition> - <id value="specimen-processingTime"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/specimen-processingTime"/> - <version value="4.1.0"/> - <name value="processingTime"/> - <title value="Processing Time"/> - <status value="draft"/> - <date value="2015-02-19"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Period or duration of processing."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Specimen.processing"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Time of processing"/> - <definition value="Period or duration of processing."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-processingTime"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Period"/> - </type> - <type> - <code value="Duration"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Time of processing"/> - <definition value="Period or duration of processing."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-processingTime"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Period"/> - </type> - <type> - <code value="Duration"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-calculatedValue"/> - <resource> - <StructureDefinition> - <id value="cqf-calculatedValue"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-calculatedValue"/> - <version value="4.1.0"/> - <name value="calculatedValue"/> - <title value="calculatedValue"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The name of an expression in a referenced library that determines a calculated value."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A calculated value"/> - <definition value="The name of an expression in a referenced library that determines a calculated value."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-calculatedValue"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A calculated value"/> - <definition value="The name of an expression in a referenced library that determines a calculated value."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-calculatedValue"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsFamilyMemberHistory"/> - <resource> - <StructureDefinition> - <id value="DiagnosticReport-geneticsFamilyMemberHistory"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsFamilyMemberHistory"/> - <version value="4.1.0"/> - <name value="FamilyMemberHistory"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Significant health events and conditions for a person related to the patient relevant in the context of care for the patient."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="FamilyHistory"/> - <definition value="Significant health events and conditions for a person related to the patient relevant in the context of care for the patient."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsFamilyMemberHistory"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="FamilyHistory"/> - <definition value="Significant health events and conditions for a person related to the patient relevant in the context of care for the patient."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsFamilyMemberHistory"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/mimeType"/> - <resource> - <StructureDefinition> - <id value="mimeType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/mimeType"/> - <version value="4.1.0"/> - <name value="mimeType"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Identifies the kind(s) of attachment allowed to be sent for an element."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Type of attachment"/> - <definition value="Identifies the kind(s) of attachment allowed to be sent for an element."/> - <comment value="This extension only has meaning if the element has a type of Attachment."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/mimeType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="MimeType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="The mime type of an attachment. Any valid mime type is allowed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/mimetypes|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Type of attachment"/> - <definition value="Identifies the kind(s) of attachment allowed to be sent for an element."/> - <comment value="This extension only has meaning if the element has a type of Attachment."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/mimeType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="MimeType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="The mime type of an attachment. Any valid mime type is allowed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/mimetypes|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-deviceCode"/> - <resource> - <StructureDefinition> - <id value="observation-deviceCode"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-deviceCode"/> - <version value="4.1.0"/> - <name value="deviceCode"/> - <title value="Device Code"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="A code representing the the type of device used for this observation. Should only be used if not implicit in the code found in `Observation.code`."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A code representing the the type of device used for this observation. Should only be used if not implicit in the code found in `Observation.code`"/> - <definition value="A code representing the the type of device used for this observation. Should only be used if not implicit in the code found in `Observation.code`."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-deviceCode"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DeviceCode"/> - </extension> - <strength value="example"/> - <valueSet value="http://hl7.org/fhir/ValueSet/device-kind"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A code representing the the type of device used for this observation. Should only be used if not implicit in the code found in `Observation.code`"/> - <definition value="A code representing the the type of device used for this observation. Should only be used if not implicit in the code found in `Observation.code`."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-deviceCode"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="DeviceCode"/> - </extension> - <strength value="example"/> - <valueSet value="http://hl7.org/fhir/ValueSet/device-kind"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-special-status"/> - <resource> - <StructureDefinition> - <id value="valueset-special-status"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-special-status"/> - <version value="4.1.0"/> - <name value="special-status"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A special note for implementers about the status of the resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Special note about status for implementers"/> - <definition value="A special note for implementers about the status of the resource."/> - <comment value="This is used in the build to mark that though a resource is normative, it changes with the build."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-special-status"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Special note about status for implementers"/> - <definition value="A special note for implementers about the status of the resource."/> - <comment value="This is used in the build to mark that though a resource is normative, it changes with the build."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-special-status"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/humanname-fathers-family"/> - <resource> - <StructureDefinition> - <id value="humanname-fathers-family"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/humanname-fathers-family"/> - <version value="4.1.0"/> - <name value="fathers-family"/> - <status value="draft"/> - <date value="2015-11-22"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The portion of the family name that is derived from the person's father."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName.family"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion of family name derived from father"/> - <definition value="The portion of the family name that is derived from the person's father."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-fathers-family"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion of family name derived from father"/> - <definition value="The portion of the family name that is derived from the person's father."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-fathers-family"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-maxOccurs"/> - <resource> - <StructureDefinition> - <id value="questionnaire-maxOccurs"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-maxOccurs"/> - <version value="4.1.0"/> - <name value="maxOccurs"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="The maximum number of times the group must appear, or the maximum number of answers for a question - when greater than 1 and not unlimited."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type!='display' and (repeats=true or %extension.valueInteger=1)"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Maximum repetitions"/> - <definition value="The maximum number of times the group must appear, or the maximum number of answers for a question - when greater than 1 and not unlimited."/> - <comment value="Only relevant if the element has repeats=true and there's a need to constrain the number of allowed repetitions."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-maxOccurs"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Maximum repetitions"/> - <definition value="The maximum number of times the group must appear, or the maximum number of answers for a question - when greater than 1 and not unlimited."/> - <comment value="Only relevant if the element has repeats=true and there's a need to constrain the number of allowed repetitions."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-maxOccurs"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-reagent"/> - <resource> - <StructureDefinition> - <id value="observation-reagent"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-reagent"/> - <version value="4.1.0"/> - <name value="reagent"/> - <title value="Reagent"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="Reference to reagents used to generate this observation. This is intended for this for in-lab transactions between instruments and Laboratory Information Systems (LIS)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to reagents used to generate this observation."/> - <definition value="Reference to reagents used to generate this observation. This is intended for this for in-lab transactions between instruments and Laboratory Information Systems (LIS)."/> - <comment value="Note this extension may be superseded by elements in planned instrumentation management resource elements."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-reagent"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Substance"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to reagents used to generate this observation."/> - <definition value="Reference to reagents used to generate this observation. This is intended for this for in-lab transactions between instruments and Laboratory Information Systems (LIS)."/> - <comment value="Note this extension may be superseded by elements in planned instrumentation management resource elements."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-reagent"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Substance"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/flag-priority"/> - <resource> - <StructureDefinition> - <id value="flag-priority"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/flag-priority"/> - <version value="4.1.0"/> - <name value="priority"/> - <title value="Flag Priority"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - Patient Care WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A code that identifies the priority of the alert, for example the Alert Priority flags column in IHE PCD TF 2 Table B.8-4."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Flag"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="An alarm code"/> - <definition value="A code that identifies the priority of the alert, for example the Alert Priority flags column in IHE PCD TF 2 Table B.8-4."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/flag-priority"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FlagPriority"/> - </extension> - <strength value="example"/> - <description value="A code of the alarm."/> - <valueSet value="http://hl7.org/fhir/ValueSet/flag-priority"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="An alarm code"/> - <definition value="A code that identifies the priority of the alert, for example the Alert Priority flags column in IHE PCD TF 2 Table B.8-4."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/flag-priority"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FlagPriority"/> - </extension> - <strength value="example"/> - <description value="A code of the alarm."/> - <valueSet value="http://hl7.org/fhir/ValueSet/flag-priority"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-precondition"/> - <resource> - <StructureDefinition> - <id value="observation-precondition"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-precondition"/> - <version value="4.1.0"/> - <name value="precondition"/> - <title value="Precondition"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="Other preceding or concurrent observations that must be known to correctly interpret the the observation. For example an fiO2 measure taken alongside of a SpO2 measurement. See the [Observation notes](observation.html#notes) section for additional guidance."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Other Observations needed to aid in the interpretation of the source observation."/> - <definition value="Other preceding or concurrent observations that must be known to correctly interpret the the observation. For example an fiO2 measure taken alongside of a SpO2 measurement. See the [Observation notes](observation.html#notes) section for additional guidance."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-precondition"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Other Observations needed to aid in the interpretation of the source observation."/> - <definition value="Other preceding or concurrent observations that must be known to correctly interpret the the observation. For example an fiO2 measure taken alongside of a SpO2 measurement. See the [Observation notes](observation.html#notes) section for additional guidance."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-precondition"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-specimenCode"/> - <resource> - <StructureDefinition> - <id value="observation-specimenCode"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-specimenCode"/> - <version value="4.1.0"/> - <name value="specimenCode"/> - <title value="Specimen Code"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="A code representing the the type of specimen used for this observation. Should only be used if not implicit in the code found in `Observation.code`."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A code representing the the type of specimen used for this observation. Should only be used if not implicit in the code found in `Observation.code`"/> - <definition value="A code representing the the type of specimen used for this observation. Should only be used if not implicit in the code found in `Observation.code`."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-specimenCode"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SpecimenCode"/> - </extension> - <strength value="example"/> - <valueSet value="http://terminology.hl7.org/ValueSet/v2-0487"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A code representing the the type of specimen used for this observation. Should only be used if not implicit in the code found in `Observation.code`"/> - <definition value="A code representing the the type of specimen used for this observation. Should only be used if not implicit in the code found in `Observation.code`."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-specimenCode"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SpecimenCode"/> - </extension> - <strength value="example"/> - <valueSet value="http://terminology.hl7.org/ValueSet/v2-0487"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-usage"/> - <resource> - <StructureDefinition> - <id value="codesystem-usage"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-usage"/> - <version value="4.1.0"/> - <name value="usage"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Consumers of the value set and the implementations, projects or standards that the author has utilized the value set in."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Who has used and how?"/> - <definition value="Consumers of the value set and the implementations, projects or standards that the author has utilized the value set in."/> - <comment value="This is likely to be a ???point in time??? view and should not be considered an authoritative listing of all uses of the value set."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:user"> - <path value="Extension.extension"/> - <sliceName value="user"/> - <short value="A consumer of or client for the value set"/> - <definition value="This is most likely to be an organization but can be an individual. It would not be a program, that information should be recorded in the usage.use."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:user.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:user.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:user.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="user"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:user.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:use"> - <path value="Extension.extension"/> - <sliceName value="use"/> - <short value="Implementation/project/standard that uses value set"/> - <definition value="A descriptive name of the project or standard in which the value set is used."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:use.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:use.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:use.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="use"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:use.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-usage"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Who has used and how?"/> - <definition value="Consumers of the value set and the implementations, projects or standards that the author has utilized the value set in."/> - <comment value="This is likely to be a ???point in time??? view and should not be considered an authoritative listing of all uses of the value set."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:user"> - <path value="Extension.extension"/> - <sliceName value="user"/> - <short value="A consumer of or client for the value set"/> - <definition value="This is most likely to be an organization but can be an individual. It would not be a program, that information should be recorded in the usage.use."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:user.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:user.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="user"/> - </element> - <element id="Extension.extension:user.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:use"> - <path value="Extension.extension"/> - <sliceName value="use"/> - <short value="Implementation/project/standard that uses value set"/> - <definition value="A descriptive name of the project or standard in which the value set is used."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:use.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:use.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="use"/> - </element> - <element id="Extension.extension:use.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-usage"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/originalText"/> - <resource> - <StructureDefinition> - <id value="originalText"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/originalText"/> - <version value="4.1.0"/> - <name value="Original Text"/> - <title value="Original Text"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="A human language representation of the concept (resource/element) as seen/selected/uttered by the user who entered the data and/or which represents the full intended meaning of the user. This can be provided either directly as text, or as a url that is a reference to a portion of the narrative of a resource ([DomainResource.text](narrative.html))."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Original Text that represents the data as seen/selected/uttered originally"/> - <definition value="A human language representation of the concept (resource/element) as seen/selected/uttered by the user who entered the data and/or which represents the full intended meaning of the user. This can be provided either directly as text, or as a url that is a reference to a portion of the narrative of a resource ([DomainResource.text](narrative.html))."/> - <comment value="The data in the element does not always capture the correct meaning with all the nuances of the original text. In these cases, the text is used to capture the full meaning of the source. This is commonly used to provide "what did the user actually see/type". Note that this extension has the same definition as CodeableConcept.text and SHALL NOT be used on CodeableConcept with type = string in place of CodeableConcept.text but MAY be used with type url. If present on a CodeableConcept with type url as well as CodeableConcept.text, then the CodeableConcept.text SHALL match the referenced narrative. It's also possible to link to the resource narrative using the [narrativeLink extension](extension-narrativelink.html) which does not claim that the data is derived from the text."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/originalText"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Original Text that represents the data as seen/selected/uttered originally"/> - <definition value="A human language representation of the concept (resource/element) as seen/selected/uttered by the user who entered the data and/or which represents the full intended meaning of the user. This can be provided either directly as text, or as a url that is a reference to a portion of the narrative of a resource ([DomainResource.text](narrative.html))."/> - <comment value="The data in the element does not always capture the correct meaning with all the nuances of the original text. In these cases, the text is used to capture the full meaning of the source. This is commonly used to provide "what did the user actually see/type". Note that this extension has the same definition as CodeableConcept.text and SHALL NOT be used on CodeableConcept with type = string in place of CodeableConcept.text but MAY be used with type url. If present on a CodeableConcept with type url as well as CodeableConcept.text, then the CodeableConcept.text SHALL match the referenced narrative. It's also possible to link to the resource narrative using the [narrativeLink extension](extension-narrativelink.html) which does not claim that the data is derived from the text."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/originalText"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-observation"/> - <resource> - <StructureDefinition> - <id value="family-member-history-genetics-observation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-observation"/> - <version value="4.1.0"/> - <name value="observation"/> - <status value="draft"/> - <date value="2019-05-29"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Allows capturing risk-relevant observations about the relative that aren't themselves a specific health condition; e.g. Certain ethnic ancestries that are disease-relevant, presence of particular genetic markers, etc."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Genetic markers, ethnicity, etc."/> - <definition value="Allows capturing risk-relevant observations about the relative that aren't themselves a specific health condition; e.g. Certain ethnic ancestries that are disease-relevant, presence of particular genetic markers, etc."/> - <comment value="This may be extended with additional genomics-specific resources when they are ready."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="inboundRelationship[typeCode=SUBJ].source"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-observation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Genetic markers, ethnicity, etc."/> - <definition value="Allows capturing risk-relevant observations about the relative that aren't themselves a specific health condition; e.g. Certain ethnic ancestries that are disease-relevant, presence of particular genetic markers, etc."/> - <comment value="This may be extended with additional genomics-specific resources when they are ready."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="inboundRelationship[typeCode=SUBJ].source"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/family-member-history-genetics-observation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/dosage-conditions"/> - <resource> - <StructureDefinition> - <id value="dosage-conditions"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/dosage-conditions"/> - <version value="4.1.0"/> - <name value="conditions"/> - <status value="draft"/> - <date value="2019-01-25"/> - <publisher value="Health Level Seven, Inc. - Pharmacy WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/Pharmacy"/> - </telecom> - </contact> - <description value="Conditions that apply to this set of dosing instructions."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Dosage"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Dosage conditions"/> - <definition value="Conditions that apply to this set of dosing instructions."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal"> - <path value="Extension.extension"/> - <sliceName value="meetGoal"/> - <short value="Extension"/> - <definition value="Follow the dosage instructions until the specified goal is met."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:meetGoal.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:meetGoal.extension:offset"> - <path value="Extension.extension.extension"/> - <sliceName value="offset"/> - <short value="Extension"/> - <definition value="Specifies the offset before or after the goal is met to follow the instructions."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:meetGoal.extension:offset.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.extension:offset.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:meetGoal.extension:offset.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.extension:offset.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Duration"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.extension:goal"> - <path value="Extension.extension.extension"/> - <sliceName value="goal"/> - <short value="Extension"/> - <definition value="The specific goal to meet to follow the dosage instructions."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:meetGoal.extension:goal.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.extension:goal.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:meetGoal.extension:goal.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="goal"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.extension:goal.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Goal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="meetGoal"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:meetGoal.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger"> - <path value="Extension.extension"/> - <sliceName value="whenTrigger"/> - <short value="Extension"/> - <definition value="A condition that causes the dosage instructions to be followed."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:whenTrigger.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:whenTrigger.extension:offset"> - <path value="Extension.extension.extension"/> - <sliceName value="offset"/> - <short value="Extension"/> - <definition value="Specifies the offset before or after the trigger happens to follow the instructions."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:whenTrigger.extension:offset.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.extension:offset.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:whenTrigger.extension:offset.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.extension:offset.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Duration"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger"> - <path value="Extension.extension.extension"/> - <sliceName value="trigger"/> - <short value="Extension"/> - <definition value="The event that causes the dosage instruction to be followed."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="trigger"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="whenTrigger"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:whenTrigger.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:precondition"> - <path value="Extension.extension"/> - <sliceName value="precondition"/> - <short value="Extension"/> - <definition value="A condition that must (or must not) be present for the dosage instructions to be followed."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:precondition.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:precondition.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur"> - <path value="Extension.extension.extension"/> - <sliceName value="doesNotOccur"/> - <short value="Extension"/> - <definition value="If set to 'true', indicates that the condition must not be present for the dosage instructions to be followed."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="doesNotOccur"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:precondition.extension:condition"> - <path value="Extension.extension.extension"/> - <sliceName value="condition"/> - <short value="Extension"/> - <definition value="The event that causes the dosage instruction to be followed."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:precondition.extension:condition.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:precondition.extension:condition.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:precondition.extension:condition.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="condition"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:precondition.extension:condition.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:precondition.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="precondition"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:precondition.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/dosage-conditions"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Dosage conditions"/> - <definition value="Conditions that apply to this set of dosing instructions."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:meetGoal"> - <path value="Extension.extension"/> - <sliceName value="meetGoal"/> - <definition value="Follow the dosage instructions until the specified goal is met."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:meetGoal.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:meetGoal.extension:offset"> - <path value="Extension.extension.extension"/> - <sliceName value="offset"/> - <definition value="Specifies the offset before or after the goal is met to follow the instructions."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:meetGoal.extension:offset.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:meetGoal.extension:offset.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - </element> - <element id="Extension.extension:meetGoal.extension:offset.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Duration"/> - </type> - </element> - <element id="Extension.extension:meetGoal.extension:goal"> - <path value="Extension.extension.extension"/> - <sliceName value="goal"/> - <definition value="The specific goal to meet to follow the dosage instructions."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:meetGoal.extension:goal.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:meetGoal.extension:goal.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="goal"/> - </element> - <element id="Extension.extension:meetGoal.extension:goal.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Goal"/> - </type> - </element> - <element id="Extension.extension:meetGoal.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="meetGoal"/> - </element> - <element id="Extension.extension:meetGoal.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - <element id="Extension.extension:whenTrigger"> - <path value="Extension.extension"/> - <sliceName value="whenTrigger"/> - <definition value="A condition that causes the dosage instructions to be followed."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:whenTrigger.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:whenTrigger.extension:offset"> - <path value="Extension.extension.extension"/> - <sliceName value="offset"/> - <definition value="Specifies the offset before or after the trigger happens to follow the instructions."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:whenTrigger.extension:offset.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:whenTrigger.extension:offset.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="offset"/> - </element> - <element id="Extension.extension:whenTrigger.extension:offset.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Duration"/> - </type> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger"> - <path value="Extension.extension.extension"/> - <sliceName value="trigger"/> - <definition value="The event that causes the dosage instruction to be followed."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="trigger"/> - </element> - <element id="Extension.extension:whenTrigger.extension:trigger.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - <element id="Extension.extension:whenTrigger.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="whenTrigger"/> - </element> - <element id="Extension.extension:whenTrigger.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - <element id="Extension.extension:precondition"> - <path value="Extension.extension"/> - <sliceName value="precondition"/> - <definition value="A condition that must (or must not) be present for the dosage instructions to be followed."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:precondition.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur"> - <path value="Extension.extension.extension"/> - <sliceName value="doesNotOccur"/> - <definition value="If set to 'true', indicates that the condition must not be present for the dosage instructions to be followed."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="doesNotOccur"/> - </element> - <element id="Extension.extension:precondition.extension:doesNotOccur.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - <element id="Extension.extension:precondition.extension:condition"> - <path value="Extension.extension.extension"/> - <sliceName value="condition"/> - <definition value="The event that causes the dosage instruction to be followed."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:precondition.extension:condition.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:precondition.extension:condition.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="condition"/> - </element> - <element id="Extension.extension:precondition.extension:condition.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - <element id="Extension.extension:precondition.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="precondition"/> - </element> - <element id="Extension.extension:precondition.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/dosage-conditions"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/encounter-associatedEncounter"/> - <resource> - <StructureDefinition> - <id value="encounter-associatedEncounter"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/encounter-associatedEncounter"/> - <version value="4.1.0"/> - <name value="associatedEncounter"/> - <title value="associatedEncounter"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="This encounter occurs within the scope of the referenced encounter."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Encounter"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated Encounter"/> - <definition value="This encounter occurs within the scope of the referenced encounter."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/encounter-associatedEncounter"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Encounter"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated Encounter"/> - <definition value="This encounter occurs within the scope of the referenced encounter."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/encounter-associatedEncounter"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Encounter"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/event-location"/> - <resource> - <StructureDefinition> - <id value="event-location"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/event-location"/> - <version value="4.1.0"/> - <name value="location"/> - <title value="Event Location"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="The principal physical location where the {{title}} was performed."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyDelivery"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Where event occurred"/> - <definition value="The principal physical location where the {{title}} was performed."/> - <comment value="May reference only *Provenance* resources deemed “relevant” or important. This element does not point to the Provenance associated with the current version of the resource - as it would be created after this version existed. The Provenance for the current version can be retrieved with a [` _revinclude`](search.html#revinclude)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.location"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="EVN.7"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".participation[typeCode=LOC].role"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-location"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Where event occurred"/> - <definition value="The principal physical location where the {{title}} was performed."/> - <comment value="May reference only *Provenance* resources deemed “relevant” or important. This element does not point to the Provenance associated with the current version of the resource - as it would be created after this version existed. The Provenance for the current version can be retrieved with a [` _revinclude`](search.html#revinclude)."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="workflow"/> - <map value="Event.location"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="EVN.7"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".participation[typeCode=LOC].role"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-location"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-wg"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"/> - <version value="4.1.0"/> - <name value="wg"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The work group that owns and maintains this resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Owning Work Group"/> - <definition value="The work group that owns and maintains this resource."/> - <comment value="This is mostly used in the main specification."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="HL7Workgroup"/> - </extension> - <strength value="required"/> - <description value="An HL7 administrative unit that owns artifacts in the FHIR specification."/> - <valueSet value="http://hl7.org/fhir/ValueSet/hl7-work-group|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Owning Work Group"/> - <definition value="The work group that owns and maintains this resource."/> - <comment value="This is mostly used in the main specification."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="HL7Workgroup"/> - </extension> - <strength value="required"/> - <description value="An HL7 administrative unit that owns artifacts in the FHIR specification."/> - <valueSet value="http://hl7.org/fhir/ValueSet/hl7-work-group|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-concept-comments"/> - <resource> - <StructureDefinition> - <id value="valueset-concept-comments"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-concept-comments"/> - <version value="4.1.0"/> - <name value="concept-comments"/> - <title value="Comment"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A comment that explains how this code is used in this context (where the value set is expected to be used)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Comment about the use of this code in this context"/> - <definition value="A comment that explains how this code is used in this context (where the value set is expected to be used)."/> - <comment value="This is used in various FHIR value sets to make comments on how particular codes are used when the formal definition is a little abstract or vague, but it's not clear whether it belongs in the actual value set resource."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-concept-comments"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Comment about the use of this code in this context"/> - <definition value="A comment that explains how this code is used in this context (where the value set is expected to be used)."/> - <comment value="This is used in various FHIR value sets to make comments on how particular codes are used when the formal definition is a little abstract or vague, but it's not clear whether it belongs in the actual value set resource."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-concept-comments"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-abatement"/> - <resource> - <StructureDefinition> - <id value="familymemberhistory-abatement"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-abatement"/> - <version value="4.1.0"/> - <name value="abatement"/> - <title value="abatement"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The approximate date, age, or flag indicating that the condition of the family member resolved. The abatement should only be specified if the condition is stated in the positive sense, i.e., the didNotHave flag is false."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory.condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="When (or if) the family member's condition resolved"/> - <definition value="The approximate date, age, or flag indicating that the condition of the family member resolved. The abatement should only be specified if the condition is stated in the positive sense, i.e., the didNotHave flag is false."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-abatement"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="When (or if) the family member's condition resolved"/> - <definition value="The approximate date, age, or flag indicating that the condition of the family member resolved. The abatement should only be specified if the condition is stated in the positive sense, i.e., the didNotHave flag is false."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-abatement"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/careteam-alias"/> - <resource> - <StructureDefinition> - <id value="careteam-alias"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/careteam-alias"/> - <version value="4.1.0"/> - <name value="alias"/> - <title value="Alias"/> - <status value="draft"/> - <date value="2019-09-16"/> - <publisher value="Health Level Seven, Inc. - Patient Care WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/patientcare.html"/> - </telecom> - </contact> - <description value="Alternate names by which the team is also known."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CareTeam"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Alternate names by which the team is also known"/> - <definition value="Alternate names by which the team is also known."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/careteam-alias"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Alternate names by which the team is also known"/> - <definition value="Alternate names by which the team is also known."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/careteam-alias"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-expansionSource"/> - <resource> - <StructureDefinition> - <id value="valueset-expansionSource"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-expansionSource"/> - <version value="4.1.0"/> - <name value="expansionSource"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The logical URL of the ValueSet definition that was used to generate this expansion."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.expansion"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="ValueSet definition used to generate this expansion (logical URL)"/> - <definition value="The logical URL of the ValueSet definition that was used to generate this expansion."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expansionSource"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="ValueSet definition used to generate this expansion (logical URL)"/> - <definition value="The logical URL of the ValueSet definition that was used to generate this expansion."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-expansionSource"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/communication-media"/> - <resource> - <StructureDefinition> - <id value="communication-media"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/communication-media"/> - <version value="4.1.0"/> - <name value="media"/> - <title value="media"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="It contains enriched media representation of the alert message, such as a voice recording. This may be used, for example for compliance with jurisdictional accessibility requirements, literacy issues, or translations of the unstructured text content in other languages."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Communication"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Attached media"/> - <definition value="It contains enriched media representation of the alert message, such as a voice recording. This may be used, for example for compliance with jurisdictional accessibility requirements, literacy issues, or translations of the unstructured text content in other languages."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/communication-media"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Attachment"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Attached media"/> - <definition value="It contains enriched media representation of the alert message, such as a voice recording. This may be used, for example for compliance with jurisdictional accessibility requirements, literacy issues, or translations of the unstructured text content in other languages."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/communication-media"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Attachment"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"/> - <resource> - <StructureDefinition> - <id value="iso21090-EN-qualifier"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"/> - <version value="4.1.0"/> - <name value="EN-qualifier"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName.family"/> - </context> - <context> - <type value="element"/> - <expression value="HumanName.given"/> - </context> - <context> - <type value="element"/> - <expression value="HumanName.prefix"/> - </context> - <context> - <type value="element"/> - <expression value="HumanName.suffix"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="LS | AC | NB | PR | HON | BR | AD | SP | MID | CL | IN | VV"/> - <definition value="A set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type."/> - <comment value="Used to indicate additional information about the name part and how it should be used."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ENXP.qualifier"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EntityNamePartQualifier"/> - </extension> - <strength value="required"/> - <description value="A set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type."/> - <valueSet value="http://hl7.org/fhir/ValueSet/name-part-qualifier|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="LS | AC | NB | PR | HON | BR | AD | SP | MID | CL | IN | VV"/> - <definition value="A set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type."/> - <comment value="Used to indicate additional information about the name part and how it should be used."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ENXP.qualifier"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-EN-qualifier"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="EntityNamePartQualifier"/> - </extension> - <strength value="required"/> - <description value="A set of codes each of which specifies a certain subcategory of the name part in addition to the main name part type."/> - <valueSet value="http://hl7.org/fhir/ValueSet/name-part-qualifier|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-fmm"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"/> - <version value="4.1.0"/> - <name value="fmm"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The FMM level assigned to the artifact."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="FMM Level"/> - <definition value="The FMM level assigned to the artifact."/> - <comment value="Though this is defined for resources, it can be used for any artifact."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="FMM Level"/> - <definition value="The FMM level assigned to the artifact."/> - <comment value="Though this is defined for resources, it can be used for any artifact."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption"/> - <resource> - <StructureDefinition> - <id value="questionnaire-unitOption"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption"/> - <version value="4.1.0"/> - <name value="unitOption"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="A unit that the user may choose when providing a quantity value."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='quantity'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Unit choice"/> - <definition value="A unit that the user may choose when providing a quantity value."/> - <comment value="Provide either unit-option(s) or unit-valueSet. In the absence of either, any unit is valid."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Unit choice"/> - <definition value="A unit that the user may choose when providing a quantity value."/> - <comment value="Provide either unit-option(s) or unit-valueSet. In the absence of either, any unit is valid."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-unitOption"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/specimen-collectionPriority"/> - <resource> - <StructureDefinition> - <id value="specimen-collectionPriority"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/specimen-collectionPriority"/> - <version value="4.1.0"/> - <name value="collectionPriority"/> - <title value="Collection Priority"/> - <status value="draft"/> - <date value="2015-02-19"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The urgency of sample collection, such as STAT, ASAP, ASAP-ED, ROUTINE, ROUTINE-AM, etc…."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Specimen.collection"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Urgency for collection"/> - <definition value="The urgency of sample collection, such as STAT, ASAP, ASAP-ED, ROUTINE, ROUTINE-AM, etc…."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-collectionPriority"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="PriorityExample"/> - </extension> - <strength value="example"/> - <description value="Type representing the priority for specimen collection."/> - <valueSet value="http://hl7.org/fhir/ValueSet/specimen-collection-priority"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Urgency for collection"/> - <definition value="The urgency of sample collection, such as STAT, ASAP, ASAP-ED, ROUTINE, ROUTINE-AM, etc…."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-collectionPriority"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="PriorityExample"/> - </extension> - <strength value="example"/> - <description value="Type representing the priority for specimen collection."/> - <valueSet value="http://hl7.org/fhir/ValueSet/specimen-collection-priority"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-supplement"/> - <resource> - <StructureDefinition> - <id value="valueset-supplement"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-supplement"/> - <version value="4.1.0"/> - <name value="supplement"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This extension declares that a value set depends on a particular supplement and should not be used in its absence."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Declares dependency on a particular supplment"/> - <definition value="This extension declares that a value set depends on a particular supplement and should not be used in its absence."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-supplement"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/CodeSystem"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Declares dependency on a particular supplment"/> - <definition value="This extension declares that a value set depends on a particular supplement and should not be used in its absence."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-supplement"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/CodeSystem"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationQualifier"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-deliveryInstallationQualifier"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationQualifier"/> - <version value="4.1.0"/> - <name value="ADXP-deliveryInstallationQualifier"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A number, letter or name identifying a delivery installation. For example, for Station A, the delivery installation qualifier would be 'A'."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryInstallationQualifier"/> - <definition value="A number, letter or name identifying a delivery installation. For example, for Station A, the delivery installation qualifier would be 'A'."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DINSTQ]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationQualifier"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryInstallationQualifier"/> - <definition value="A number, letter or name identifying a delivery installation. For example, for Station A, the delivery installation qualifier would be 'A'."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DINSTQ]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationQualifier"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-recipientLanguage"/> - <resource> - <StructureDefinition> - <id value="cqf-recipientLanguage"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-recipientLanguage"/> - <version value="4.1.0"/> - <name value="recipientLanguage"/> - <title value="recipientLanguage"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="Preferred language of the person that will consume the content."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="Preferred language of the person that will consume the content."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-recipientLanguage"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="Preferred language of the person that will consume the content."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-recipientLanguage"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-maxValueSet"> - <valueCanonical value="http://hl7.org/fhir/ValueSet/all-languages"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Language"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="preferred"/> - <description value="A human language."/> - <valueSet value="http://hl7.org/fhir/ValueSet/languages"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-importance"/> - <resource> - <StructureDefinition> - <id value="patient-importance"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-importance"/> - <version value="4.1.0"/> - <name value="importance"/> - <title value="importance"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The importance of the patient (e.g. VIP)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Special status given the patient"/> - <definition value="The importance of the patient (e.g. VIP)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-importance"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Special status given the patient"/> - <definition value="The importance of the patient (e.g. VIP)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-importance"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/timing-dayOfMonth"/> - <resource> - <StructureDefinition> - <id value="timing-dayOfMonth"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/timing-dayOfMonth"/> - <version value="4.1.0"/> - <name value="dayOfMonth"/> - <title value="Day Of Month"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - MnM WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/MnM"/> - </telecom> - </contact> - <description value="When present, this extension indicate that the event actually only occurs on the specified days of the month, on the times as otherwise specified by the timing schedule."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Timing.repeat"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Day of Month for schedule"/> - <definition value="When present, this extension indicate that the event actually only occurs on the specified days of the month, on the times as otherwise specified by the timing schedule."/> - <comment value="The value must be an integer in thr range of 0 to 31. Its at the discretion of the implementer what to do if the value of the day is higher than the number of days in a given month."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/timing-dayOfMonth"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="positiveInt"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Day of Month for schedule"/> - <definition value="When present, this extension indicate that the event actually only occurs on the specified days of the month, on the times as otherwise specified by the timing schedule."/> - <comment value="The value must be an integer in thr range of 0 to 31. Its at the discretion of the implementer what to do if the value of the day is higher than the number of days in a given month."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/timing-dayOfMonth"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="positiveInt"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-receivingOrganization"/> - <resource> - <StructureDefinition> - <id value="cqf-receivingOrganization"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-receivingOrganization"/> - <version value="4.1.0"/> - <name value="receivingOrganization"/> - <title value="receivingOrganization"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The organization that will receive the response."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Basic"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The organization that will receive the response."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-receivingOrganization"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The organization that will receive the response."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-receivingOrganization"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Organization"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/concept-bidirectional"/> - <resource> - <StructureDefinition> - <id value="concept-bidirectional"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/concept-bidirectional"/> - <version value="4.1.0"/> - <name value="bidirectional"/> - <title value="Bi-directional"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Set to true if the concept map can be safely intepreted in reversse."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ConceptMap"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether the map can be interpreted in reverse"/> - <definition value="Set to true if the concept map can be safely intepreted in reversse."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/concept-bidirectional"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether the map can be interpreted in reverse"/> - <definition value="Set to true if the concept map can be safely intepreted in reversse."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/concept-bidirectional"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-use-markdown"/> - <resource> - <StructureDefinition> - <id value="codesystem-use-markdown"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-use-markdown"/> - <version value="4.1.0"/> - <name value="use-markdown"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="If true, the definitions of the concepts can be treated and rendered as markdown for improved presentation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicate that definitions can be processed as markdown"/> - <definition value="If true, the definitions of the concepts can be treated and rendered as markdown for improved presentation."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-use-markdown"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicate that definitions can be processed as markdown"/> - <definition value="If true, the definitions of the concepts can be treated and rendered as markdown for improved presentation."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-use-markdown"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-direction"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-direction"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-direction"/> - <version value="4.1.0"/> - <name value="ADXP-direction"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Direction (e.g., N, S, W, E)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="direction"/> - <definition value="Direction (e.g., N, S, W, E)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DIR]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-direction"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="direction"/> - <definition value="Direction (e.g., N, S, W, E)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DIR]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-direction"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-adoptionInfo"/> - <resource> - <StructureDefinition> - <id value="patient-adoptionInfo"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-adoptionInfo"/> - <version value="4.1.0"/> - <name value="adoptionInfo"/> - <title value="adoptionInfo"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Code indication the adoption status of the patient."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The adoption status of the patient"/> - <definition value="Code indication the adoption status of the patient."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-adoptionInfo"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The adoption status of the patient"/> - <definition value="Code indication the adoption status of the patient."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-adoptionInfo"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/variable"/> - <resource> - <StructureDefinition> - <id value="variable"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/variable"/> - <version value="4.1.0"/> - <name value="Variable"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Variable specifying a logic to generate a variable for use in subsequent logic. The name of the variable will be added to FHIRPath's context when processing descendants of the element that contains this extension."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Variable for processing"/> - <definition value="Variable specifying a logic to generate a variable for use in subsequent logic. The name of the variable will be added to FHIRPath's context when processing descendants of the element that contains this extension."/> - <comment value="Ordering of variable extension declarations is significant as variables declared in one repetition of this extension might be used in subsequent extension repetitions."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/variable"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Expression"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Variable for processing"/> - <definition value="Variable specifying a logic to generate a variable for use in subsequent logic. The name of the variable will be added to FHIRPath's context when processing descendants of the element that contains this extension."/> - <comment value="Ordering of variable extension declarations is significant as variables declared in one repetition of this extension might be used in subsequent extension repetitions."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/variable"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Expression"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-effectiveDate"/> - <resource> - <StructureDefinition> - <id value="codesystem-effectiveDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-effectiveDate"/> - <version value="4.1.0"/> - <name value="effectiveDate"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This is the first date-time when the value set version becomes active, so this value is present on Inactive value set versions as well. The start Date_time is expected to be as of 0001 UTC of the Effective Date."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version becomes Active and is available for use"/> - <definition value="This is the first date-time when the value set version becomes active, so this value is present on Inactive value set versions as well. The start Date_time is expected to be as of 0001 UTC of the Effective Date."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-effectiveDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="When the value set version becomes Active and is available for use"/> - <definition value="This is the first date-time when the value set version becomes active, so this value is present on Inactive value set versions as well. The start Date_time is expected to be as of 0001 UTC of the Effective Date."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-effectiveDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-preferred"/> - <resource> - <StructureDefinition> - <id value="iso21090-preferred"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-preferred"/> - <version value="4.1.0"/> - <name value="preferred"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Flag denoting whether parent item is preferred - e.g., a preferred address or telephone number."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Preferred"/> - <definition value="Flag denoting whether parent item is preferred - e.g., a preferred address or telephone number."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-preferred"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Preferred"/> - <definition value="Flag denoting whether parent item is preferred - e.g., a preferred address or telephone number."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-preferred"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/bundle-event-count"/> - <resource> - <StructureDefinition> - <id value="bundle-event-count"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/bundle-event-count"/> - <version value="4.1.0"/> - <name value="bundle-event-count"/> - <title value="Bundle Event Count"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The number of events included in this Subscription notification (0 for handshake and heartbeat)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.meta"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The number of events included in this Subscription notification"/> - <definition value="The number of events included in this Subscription notification (0 for handshake and heartbeat)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/bundle-event-count"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="unsignedInt"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The number of events included in this Subscription notification"/> - <definition value="The number of events included in this Subscription notification (0 for handshake and heartbeat)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/bundle-event-count"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="unsignedInt"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/communicationrequest-initiatingLocation"/> - <resource> - <StructureDefinition> - <id value="communicationrequest-initiatingLocation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/communicationrequest-initiatingLocation"/> - <version value="4.1.0"/> - <name value="initiatingLocation"/> - <title value="initiatingLocation"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Location where the information being requested to be communicated happened."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CommunicationRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Location where the CommunicationRequest was initiated"/> - <definition value="Location where the information being requested to be communicated happened."/> - <comment value="Use when the location of initiation is important for interpretation of the communication. Do not use for general Provenance purposes."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/communicationrequest-initiatingLocation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Location where the CommunicationRequest was initiated"/> - <definition value="Location where the information being requested to be communicated happened."/> - <comment value="Use when the location of initiation is important for interpretation of the communication. Do not use for general Provenance purposes."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/communicationrequest-initiatingLocation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Location"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/contactpoint-local"/> - <resource> - <StructureDefinition> - <id value="contactpoint-local"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/contactpoint-local"/> - <version value="4.1.0"/> - <name value="local"/> - <title value="Local Number"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The local number that must be dialed to connect within the area/city/zone. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ContactPoint"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Local number that must always be dialled"/> - <definition value="The local number that must be dialed to connect within the area/city/zone. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-local"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Local number that must always be dialled"/> - <definition value="The local number that must be dialed to connect within the area/city/zone. This extension is used when a system wishes to designate specific parts of a phone number (and potentially place constraints on which components must be present and how they're filled in)."/> - <comment value="The ContactPoint.value element SHOULD still be populated even if the extension is present."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/contactpoint-local"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-patient-record"/> - <resource> - <StructureDefinition> - <id value="familymemberhistory-patient-record"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-patient-record"/> - <version value="4.1.0"/> - <name value="patient-record"/> - <title value="Patient Record"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A link to one to more patient records for the relation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Link to patient record"/> - <definition value="A link to one to more patient records for the relation."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-patient-record"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Link to patient record"/> - <definition value="A link to one to more patient records for the relation."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/familymemberhistory-patient-record"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-source"/> - <resource> - <StructureDefinition> - <id value="operationoutcome-issue-source"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-source"/> - <version value="4.1.0"/> - <name value="issue-source"/> - <title value="Source of Issue"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Helps a user track down the source of the problem."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="OperationOutcome.issue"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Source of a validation message"/> - <definition value="Helps a user track down the source of the problem."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-source"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Source of a validation message"/> - <definition value="Helps a user track down the source of the problem."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationoutcome-issue-source"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/tz-code"/> - <resource> - <StructureDefinition> - <id value="tz-code"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/tz-code"/> - <version value="4.1.0"/> - <name value="Timezone Code"/> - <title value="An IANA timezone code for the timezone offset per BCP 175"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="An IANA timezone code for the timezone offset per [BCP 175](https://www.iana.org/go/rfc6557). The offset is specified as part of a dateTime/instant (or using the tzOffset extension on a date if necessary). The timezone code may also be provided to allow for human display of the location associated with the offset."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="date"/> - </context> - <context> - <type value="element"/> - <expression value="dateTime"/> - </context> - <context> - <type value="element"/> - <expression value="instant"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="IANA Timezone Code per BCP 175"/> - <definition value="An IANA timezone code for the timezone offset per [BCP 175](https://www.iana.org/go/rfc6557). The offset is specified as part of a dateTime/instant (or using the tzOffset extension on a date if necessary). The timezone code may also be provided to allow for human display of the location associated with the offset."/> - <comment value="See [https://www.iana.org/time-zones](https://www.iana.org/time-zones)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/tz-code"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="IANATimezone"/> - </extension> - <strength value="required"/> - <description value="IANA Timezones (BCP 175)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/timezones|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="IANA Timezone Code per BCP 175"/> - <definition value="An IANA timezone code for the timezone offset per [BCP 175](https://www.iana.org/go/rfc6557). The offset is specified as part of a dateTime/instant (or using the tzOffset extension on a date if necessary). The timezone code may also be provided to allow for human display of the location associated with the offset."/> - <comment value="See [https://www.iana.org/time-zones](https://www.iana.org/time-zones)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/tz-code"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="IANATimezone"/> - </extension> - <strength value="required"/> - <description value="IANA Timezones (BCP 175)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/timezones|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-otherName"/> - <resource> - <StructureDefinition> - <id value="codesystem-otherName"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-otherName"/> - <version value="4.1.0"/> - <name value="otherName"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Human readable names for the codesystem."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Alternative names"/> - <definition value="Human readable names for the codesystem."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:name"> - <path value="Extension.extension"/> - <sliceName value="name"/> - <short value="Human readable, short and specific"/> - <definition value="This name is intended to be human readable, short and as specific as possible and to convey the purpose of the value set. It is considered to be the name of the value set."/> - <comment value="This need not be unique. However, some use cases require uniqueness within a namespace and therefore best practice would be to make the name unique."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:name.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:name.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:name.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:name.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:preferred"> - <path value="Extension.extension"/> - <sliceName value="preferred"/> - <short value="Which name is preferred for this language"/> - <definition value="Flag that this Name in this Name Language is the preferred human-readable signifier in this language."/> - <comment value="There may be multiple human readable names in a given language, and this flag indicates which of them is preferred for the given language."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:preferred.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:preferred.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:preferred.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="preferred"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:preferred.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-otherName"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Alternative names"/> - <definition value="Human readable names for the codesystem."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:name"> - <path value="Extension.extension"/> - <sliceName value="name"/> - <short value="Human readable, short and specific"/> - <definition value="This name is intended to be human readable, short and as specific as possible and to convey the purpose of the value set. It is considered to be the name of the value set."/> - <comment value="This need not be unique. However, some use cases require uniqueness within a namespace and therefore best practice would be to make the name unique."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:name.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:name.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="name"/> - </element> - <element id="Extension.extension:name.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:preferred"> - <path value="Extension.extension"/> - <sliceName value="preferred"/> - <short value="Which name is preferred for this language"/> - <definition value="Flag that this Name in this Name Language is the preferred human-readable signifier in this language."/> - <comment value="There may be multiple human readable names in a given language, and this flag indicates which of them is preferred for the given language."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:preferred.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:preferred.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="preferred"/> - </element> - <element id="Extension.extension:preferred.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-otherName"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/specimen-isDryWeight"/> - <resource> - <StructureDefinition> - <id value="specimen-isDryWeight"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/specimen-isDryWeight"/> - <version value="4.1.0"/> - <name value="isDryWeight"/> - <title value="Is Dry Weight"/> - <status value="draft"/> - <date value="2015-02-19"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="If the recorded quantity of the specimen is reported as a weight, if it is a dry weight."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Specimen.collection.quantity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether quantity is a dry weight"/> - <definition value="If the recorded quantity of the specimen is reported as a weight, if it is a dry weight."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-isDryWeight"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether quantity is a dry weight"/> - <definition value="If the recorded quantity of the specimen is reported as a weight, if it is a dry weight."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-isDryWeight"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-bestpractice-explanation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation"/> - <version value="4.1.0"/> - <name value="bestpractice-explanation"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Explains why an invariant is labelled as a best practice invariant."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.constraint"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Explains why an invariant is labelled as best practice"/> - <definition value="Explains why an invariant is labelled as a best practice invariant."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Explains why an invariant is labelled as best practice"/> - <definition value="Explains why an invariant is labelled as a best practice invariant."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-bestpractice-explanation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="markdown"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-ancestor"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-ancestor"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-ancestor"/> - <version value="4.1.0"/> - <name value="ancestor"/> - <title value="ancestor"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A canonical reference to a StructureDefinition that this is derived from. This is a de-normalization of a chain of StructureDefinition.baseDefinition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="StructureDefinition this is derived from"/> - <definition value="A canonical reference to a StructureDefinition that this is derived from. This is a de-normalization of a chain of StructureDefinition.baseDefinition."/> - <comment value="It is an error if a structure definition lists an ancestor that is not in the chain of baseDefinitions."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-ancestor"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="StructureDefinition this is derived from"/> - <definition value="A canonical reference to a StructureDefinition that this is derived from. This is a de-normalization of a chain of StructureDefinition.baseDefinition."/> - <comment value="It is an error if a structure definition lists an ancestor that is not in the chain of baseDefinitions."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-ancestor"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/parameters-fullUrl"/> - <resource> - <StructureDefinition> - <id value="parameters-fullUrl"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/parameters-fullUrl"/> - <version value="4.1.0"/> - <name value="fullUrl"/> - <title value="fullUrl for resource"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="This specifies the fullUrl for the resource in parameters.resource, if there is one. When fullUrl is provided, ithe [resource resolution method described for Bundle](bundle.html#references)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Parameters.parameter"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="fullUrl for resource"/> - <definition value="This specifies the fullUrl for the resource in parameters.resource, if there is one. When fullUrl is provided, ithe [resource resolution method described for Bundle](bundle.html#references)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/parameters-fullUrl"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="fullUrl for resource"/> - <definition value="This specifies the fullUrl for the resource in parameters.resource, if there is one. When fullUrl is provided, ithe [resource resolution method described for Bundle](bundle.html#references)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/parameters-fullUrl"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumberNumeric"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-houseNumberNumeric"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumberNumeric"/> - <version value="4.1.0"/> - <name value="ADXP-houseNumberNumeric"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The numeric portion of a building number."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="houseNumberNumeric"/> - <definition value="The numeric portion of a building number."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=BNN]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumberNumeric"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="houseNumberNumeric"/> - <definition value="The numeric portion of a building number."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=BNN]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumberNumeric"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertainty"/> - <resource> - <StructureDefinition> - <id value="iso21090-uncertainty"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertainty"/> - <version value="4.1.0"/> - <name value="uncertainty"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The primary measure of variance/uncertainty of the value (the square root of the sum of the squares of the differences between all data points and the mean)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Quantity"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Standard Deviation (same units as the quantity)"/> - <definition value="The primary measure of variance/uncertainty of the value (the square root of the sum of the squares of the differences between all data points and the mean)."/> - <comment value="standardDeviation has the same units as the quantity. It is used to normalize the data for computing the distribution function. Applications that cannot deal with probability distributions can still get an idea about the confidence level by looking at standardDeviation."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="PPD.standardDeviation"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertainty"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="decimal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Standard Deviation (same units as the quantity)"/> - <definition value="The primary measure of variance/uncertainty of the value (the square root of the sum of the squares of the differences between all data points and the mean)."/> - <comment value="standardDeviation has the same units as the quantity. It is used to normalize the data for computing the distribution function. Applications that cannot deal with probability distributions can still get an idea about the confidence level by looking at standardDeviation."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="PPD.standardDeviation"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-uncertainty"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="decimal"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/ordinalValue"/> - <resource> - <StructureDefinition> - <id value="ordinalValue"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/ordinalValue"/> - <version value="4.1.0"/> - <name value="Ordinal Value"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="A numeric value that allows the comparison (less than, greater than) or other numerical manipulation of a concept (e.g. Adding up components of a score). Scores are usually a whole number, but occasionally decimals are encountered in scores."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Coding"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.answerOption"/> - </context> - <context> - <type value="element"/> - <expression value="CodeSystem.concept"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Assigned Ordinal Value"/> - <definition value="A numeric value that allows the comparison (less than, greater than) or other numerical manipulation of a concept (e.g. Adding up components of a score). Scores are usually a whole number, but occasionally decimals are encountered in scores."/> - <comment value="Scores are commonly encountered in various clinical assessment scales. Assigning a value to a concept should generally be done in a formal code system that defines the value, or in an applicable value set for the concept, but some concepts do not have a formal definition (or are not even represented as a concept formally, especially in [Questionnaires](questionnaire.html), so this extension is allowed to appear ouside those preferred contexts. Scores may even be assigned arbitrarily during use (hence, on Coding). The value may be constrained to an integer in some contexts of use. Todo: Scoring algorithms may also be defined directly, but how this is done is not yet defined."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/ordinalValue"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="decimal"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Assigned Ordinal Value"/> - <definition value="A numeric value that allows the comparison (less than, greater than) or other numerical manipulation of a concept (e.g. Adding up components of a score). Scores are usually a whole number, but occasionally decimals are encountered in scores."/> - <comment value="Scores are commonly encountered in various clinical assessment scales. Assigning a value to a concept should generally be done in a formal code system that defines the value, or in an applicable value set for the concept, but some concepts do not have a formal definition (or are not even represented as a concept formally, especially in [Questionnaires](questionnaire.html), so this extension is allowed to appear ouside those preferred contexts. Scores may even be assigned arbitrarily during use (hence, on Coding). The value may be constrained to an integer in some contexts of use. Todo: Scoring algorithms may also be defined directly, but how this is done is not yet defined."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/ordinalValue"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="decimal"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-systemRef"/> - <resource> - <StructureDefinition> - <id value="valueset-systemRef"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-systemRef"/> - <version value="4.1.0"/> - <name value="systemRef"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The formal URI for the code system. I.e. ValueSet.codeSystem.system (or its equivalent)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.compose.include"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Where to find code system"/> - <definition value="The formal URI for the code system. I.e. ValueSet.codeSystem.system (or its equivalent)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-systemRef"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Where to find code system"/> - <definition value="The formal URI for the code system. I.e. ValueSet.codeSystem.system (or its equivalent)."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-systemRef"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-allowedUnits"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-allowedUnits"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-allowedUnits"/> - <version value="4.1.0"/> - <name value="allowedUnits"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Identifies the units of measure in which the element should be captured or expressed."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Units to use for measured value"/> - <definition value="Identifies the units of measure in which the element should be captured or expressed."/> - <comment value="Use a value set if more than one unit of measure is possible. Value sets will typically be short enough to display in a drop-down selection list."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="OM2.2"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-allowedUnits"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Units"/> - </extension> - <strength value="required"/> - <description value="Units of measure allowed for an element."/> - <valueSet value="http://hl7.org/fhir/ValueSet/ucum-units|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Units to use for measured value"/> - <definition value="Identifies the units of measure in which the element should be captured or expressed."/> - <comment value="Use a value set if more than one unit of measure is possible. Value sets will typically be short enough to display in a drop-down selection list."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="OM2.2"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-allowedUnits"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Units"/> - </extension> - <strength value="required"/> - <description value="Units of measure allowed for an element."/> - <valueSet value="http://hl7.org/fhir/ValueSet/ucum-units|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/resource-approvalDate"/> - <resource> - <StructureDefinition> - <id value="resource-approvalDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/resource-approvalDate"/> - <version value="4.1.0"/> - <name value="approvalDate"/> - <title value="Approval Date"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="StructureMap"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement"/> - </context> - <context> - <type value="element"/> - <expression value="OperationDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="SearchParameter"/> - </context> - <context> - <type value="element"/> - <expression value="CompartmentDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="ImplementationGuide"/> - </context> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <context> - <type value="element"/> - <expression value="ConceptMap"/> - </context> - <context> - <type value="element"/> - <expression value="NamingSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="When resource approved by publisher"/> - <definition value="The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage."/> - <comment value="The date may be more recent than the approval date because of minor changes / editorial corrections."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-approvalDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="When resource approved by publisher"/> - <definition value="The date on which the asset content was approved by the publisher. Approval happens once when the content is officially approved for usage."/> - <comment value="The date may be more recent than the approval date because of minor changes / editorial corrections."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-approvalDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-genderIdentity"/> - <resource> - <StructureDefinition> - <id value="patient-genderIdentity"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-genderIdentity"/> - <version value="4.1.0"/> - <name value="genderIdentity"/> - <title value="genderIdentity"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The gender the patient identifies with. The Patient's gender identity is used as guidance (e.g. for staff) about how to interact with the patient."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The patient's gender identity"/> - <definition value="The gender the patient identifies with. The Patient's gender identity is used as guidance (e.g. for staff) about how to interact with the patient."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-genderIdentity"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GenderIdentity"/> - </extension> - <strength value="example"/> - <valueSet value="http://hl7.org/fhir/ValueSet/gender-identity"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The patient's gender identity"/> - <definition value="The gender the patient identifies with. The Patient's gender identity is used as guidance (e.g. for staff) about how to interact with the patient."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-genderIdentity"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="GenderIdentity"/> - </extension> - <strength value="example"/> - <valueSet value="http://hl7.org/fhir/ValueSet/gender-identity"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/servicerequest-questionnaireRequest"/> - <resource> - <StructureDefinition> - <id value="servicerequest-questionnaireRequest"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/servicerequest-questionnaireRequest"/> - <version value="4.1.0"/> - <name value="questionnaireRequest"/> - <title value="Questionnaire Requested"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Reference to a specific Questionnaire Resource as an ordered item. Allows for ordering a specific questionnaire to be completed."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ServiceRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Questionnaire to be ordered"/> - <definition value="Reference to a specific Questionnaire Resource as an ordered item. Allows for ordering a specific questionnaire to be completed."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/servicerequest-questionnaireRequest"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Questionnaire"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Questionnaire to be ordered"/> - <definition value="Reference to a specific Questionnaire Resource as an ordered item. Allows for ordering a specific questionnaire to be completed."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/servicerequest-questionnaireRequest"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Questionnaire"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/resource-effectivePeriod"/> - <resource> - <StructureDefinition> - <id value="resource-effectivePeriod"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/resource-effectivePeriod"/> - <version value="4.1.0"/> - <name value="effectivePeriod"/> - <title value="Effective Period"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The period during which the resource content was or is planned to be effective."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="StructureMap"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement"/> - </context> - <context> - <type value="element"/> - <expression value="OperationDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="SearchParameter"/> - </context> - <context> - <type value="element"/> - <expression value="CompartmentDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="ImplementationGuide"/> - </context> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <context> - <type value="element"/> - <expression value="ConceptMap"/> - </context> - <context> - <type value="element"/> - <expression value="NamingSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The effective date range for the resource"/> - <definition value="The period during which the resource content was or is planned to be effective."/> - <comment value="The effective period for a resource determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 would be published in 2015."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-effectivePeriod"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Period"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The effective date range for the resource"/> - <definition value="The period during which the resource content was or is planned to be effective."/> - <comment value="The effective period for a resource determines when the content is applicable for usage and is independent of publication and review dates. For example, a measure intended to be used for the year 2016 would be published in 2015."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-effectivePeriod"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Period"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/rendering-styleSensitive"/> - <resource> - <StructureDefinition> - <id value="rendering-styleSensitive"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/rendering-styleSensitive"/> - <version value="4.1.0"/> - <name value="styleSensitive"/> - <status value="draft"/> - <date value="2014-04-23"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Indicates that the style extensions (style, markdown and xhtml) in this resource instance are essential to the interpretation of the instance and that systems that are not capable of rendering using those extensions should not be used to render the resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Are styles important for processing?"/> - <definition value="Indicates that the style extensions (style, markdown and xhtml) in this resource instance are essential to the interpretation of the instance and that systems that are not capable of rendering using those extensions should not be used to render the resource."/> - <comment value="If set to true, all systems that claim to support this extension and that render elements from the resource SHALL either render the content as required by the style extensions ([style], [xhtml] and [markdown]) or shall indicate to the user that the resource (or specific elements in the resource) cannot be appropriately rendered by the system."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-styleSensitive"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Are styles important for processing?"/> - <definition value="Indicates that the style extensions (style, markdown and xhtml) in this resource instance are essential to the interpretation of the instance and that systems that are not capable of rendering using those extensions should not be used to render the resource."/> - <comment value="If set to true, all systems that claim to support this extension and that render elements from the resource SHALL either render the content as required by the style extensions ([style], [xhtml] and [markdown]) or shall indicate to the user that the resource (or specific elements in the resource) cannot be appropriately rendered by the system."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendering-styleSensitive"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGenomicSourceClass"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsGenomicSourceClass"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGenomicSourceClass"/> - <version value="4.1.0"/> - <name value="GenomicSourceClass"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Source of sample used to determine the sequence in sequencing lab -- germline, somatic, prenatal. LOINC Code: ([48002-0](http://loinc.org/48002-0))."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Genomic source class"/> - <definition value="Source of sample used to determine the sequence in sequencing lab -- germline, somatic, prenatal. LOINC Code: ([48002-0](http://loinc.org/48002-0))."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGenomicSourceClass"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Genomic source class"/> - <definition value="Source of sample used to determine the sequence in sequencing lab -- germline, somatic, prenatal. LOINC Code: ([48002-0](http://loinc.org/48002-0))."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGenomicSourceClass"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-sourceReference"/> - <resource> - <StructureDefinition> - <id value="valueset-sourceReference"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-sourceReference"/> - <version value="4.1.0"/> - <name value="sourceReference"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This text is intended to act as a citation to work done elsewhere that is not part of the current stewarding process where the referenced source is in some way a basis of the current value set definition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Where did this content come from"/> - <definition value="This text is intended to act as a citation to work done elsewhere that is not part of the current stewarding process where the referenced source is in some way a basis of the current value set definition."/> - <comment value="This is not intended to be a direct link to another value set. It is only intended to support a link or textual description that indicates related material for the value set."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-sourceReference"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Where did this content come from"/> - <definition value="This text is intended to act as a citation to work done elsewhere that is not part of the current stewarding process where the referenced source is in some way a basis of the current value set definition."/> - <comment value="This is not intended to be a direct link to another value set. It is only intended to support a link or textual description that indicates related material for the value set."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-sourceReference"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-substanceExposureRisk"/> - <resource> - <StructureDefinition> - <id value="allergyintolerance-substanceExposureRisk"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-substanceExposureRisk"/> - <version value="4.1.0"/> - <name value="substanceExposureRisk"/> - <title value="substanceExposureRisk"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A complex extension allowing structured capture of the exposure risk of the patient for an adverse reaction (allergy or intolerance) to the specified substance/product."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Exposure risk of adverse reaction (allergy or intolerance) to the specified substance/product"/> - <definition value="A complex extension allowing structured capture of the exposure risk of the patient for an adverse reaction (allergy or intolerance) to the specified substance/product."/> - <comment value="This extension is available and is intended to be used as a more completely structured and flexible alternative to the 'code' element for representing positive and negative allergy and intolerance statements. If this extension element is present, the AllergyIntolerance.code element SHALL be omitted (see invariant "code or substanceExposureRisk")."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <constraint> - <key value="inv-1"/> - <severity value="error"/> - <human value="If the substanceExposureRisk extension element is present, the AllergyIntolerance.code element must be omitted."/> - <expression value="substanceExposureRisk.exists() and code.empty()"/> - <xpath value="exists(f:substanceExposureRisk) and not(exists(f:code))"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:substance"> - <path value="Extension.extension"/> - <sliceName value="substance"/> - <short value="Substance (or pharmaceutical product)"/> - <definition value="Code for a substance or pharmaceutical product that is considered to be responsible for the adverse reaction risk or is known not to have an associated risk of an adverse reaction upon exposure."/> - <comment value="It is strongly recommended that this element be populated using a terminology, where possible. For example, some terminologies used include RxNorm, SNOMED CT, DM+D, NDFRT, UNII, and ATC. Plain text should only be used if there is no appropriate terminology available. Additional details can be specified in the text."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="v2"/> - <map value="AL1-3 / IAM-3"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".participation[typeCode=CAGNT].role[classCode=ADMM].player[classCode=MAT, determinerCode=KIND, code <= ExposureAgentEntityType]"/> - </mapping> - </element> - <element id="Extension.extension:substance.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:substance.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:substance.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="substance"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:substance.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SubstanceCode"/> - </extension> - <strength value="example"/> - <description value="Codes defining the type of the substance (including pharmaceutical products)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/substance-code"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:exposureRisk"> - <path value="Extension.extension"/> - <sliceName value="exposureRisk"/> - <short value="known-reaction-risk | no-known-reaction-risk"/> - <definition value="The presence or absence of a known exposure risk of the patient for an adverse reaction (allergy or intolerance) to the specified substance/product."/> - <comment value="exposureRisk is a modifier of the substance."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:exposureRisk.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:exposureRisk.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:exposureRisk.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="exposureRisk"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:exposureRisk.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AllergyIntoleranceSubstanceExposureRisk"/> - </extension> - <strength value="required"/> - <description value="The risk of an adverse reaction (allergy or intolerance) for this patient upon exposure to the substance (including pharmaceutical products)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/allerg-intol-substance-exp-risk|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-substanceExposureRisk"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Exposure risk of adverse reaction (allergy or intolerance) to the specified substance/product"/> - <definition value="A complex extension allowing structured capture of the exposure risk of the patient for an adverse reaction (allergy or intolerance) to the specified substance/product."/> - <comment value="This extension is available and is intended to be used as a more completely structured and flexible alternative to the 'code' element for representing positive and negative allergy and intolerance statements. If this extension element is present, the AllergyIntolerance.code element SHALL be omitted (see invariant "code or substanceExposureRisk")."/> - <min value="0"/> - <max value="1"/> - <constraint> - <key value="inv-1"/> - <severity value="error"/> - <human value="If the substanceExposureRisk extension element is present, the AllergyIntolerance.code element must be omitted."/> - <expression value="substanceExposureRisk.exists() and code.empty()"/> - <xpath value="exists(f:substanceExposureRisk) and not(exists(f:code))"/> - </constraint> - </element> - <element id="Extension.extension:substance"> - <path value="Extension.extension"/> - <sliceName value="substance"/> - <short value="Substance (or pharmaceutical product)"/> - <definition value="Code for a substance or pharmaceutical product that is considered to be responsible for the adverse reaction risk or is known not to have an associated risk of an adverse reaction upon exposure."/> - <comment value="It is strongly recommended that this element be populated using a terminology, where possible. For example, some terminologies used include RxNorm, SNOMED CT, DM+D, NDFRT, UNII, and ATC. Plain text should only be used if there is no appropriate terminology available. Additional details can be specified in the text."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <mapping> - <identity value="v2"/> - <map value="AL1-3 / IAM-3"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".participation[typeCode=CAGNT].role[classCode=ADMM].player[classCode=MAT, determinerCode=KIND, code <= ExposureAgentEntityType]"/> - </mapping> - </element> - <element id="Extension.extension:substance.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:substance.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="substance"/> - </element> - <element id="Extension.extension:substance.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SubstanceCode"/> - </extension> - <strength value="example"/> - <description value="Codes defining the type of the substance (including pharmaceutical products)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/substance-code"/> - </binding> - </element> - <element id="Extension.extension:exposureRisk"> - <path value="Extension.extension"/> - <sliceName value="exposureRisk"/> - <short value="known-reaction-risk | no-known-reaction-risk"/> - <definition value="The presence or absence of a known exposure risk of the patient for an adverse reaction (allergy or intolerance) to the specified substance/product."/> - <comment value="exposureRisk is a modifier of the substance."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:exposureRisk.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:exposureRisk.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="exposureRisk"/> - </element> - <element id="Extension.extension:exposureRisk.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AllergyIntoleranceSubstanceExposureRisk"/> - </extension> - <strength value="required"/> - <description value="The risk of an adverse reaction (allergy or intolerance) for this patient upon exposure to the substance (including pharmaceutical products)."/> - <valueSet value="http://hl7.org/fhir/ValueSet/allerg-intol-substance-exp-risk|4.1.0"/> - </binding> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-substanceExposureRisk"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsReferences"/> - <resource> - <StructureDefinition> - <id value="DiagnosticReport-geneticsReferences"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsReferences"/> - <version value="4.1.0"/> - <name value="References"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Additional bibliographic reference information about genetics, medications, clinical trials, etc. associated with knowledge-based information on genetics/genetic condition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional bibliographic reference information"/> - <definition value="Additional bibliographic reference information about genetics, medications, clinical trials, etc. associated with knowledge-based information on genetics/genetic condition."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:description"> - <path value="Extension.extension"/> - <sliceName value="description"/> - <short value="Reference description"/> - <definition value="Concise description of the genetic reference."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:description.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:description.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:description.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="description"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:description.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:reference"> - <path value="Extension.extension"/> - <sliceName value="reference"/> - <short value="Reference URI"/> - <definition value="An absolute URI to express where to find the link."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:reference.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:reference.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:reference.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="reference"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:reference.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="Reference type"/> - <definition value="A code that classifies the type of genetic reference link."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Diagnostic-Snomed"/> - </extension> - <strength value="example"/> - <description value="Codes for diagnostic genetic reference types."/> - <valueSet value="http://hl7.org/fhir/ValueSet/diagnostic-based-on-snomed"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsReferences"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional bibliographic reference information"/> - <definition value="Additional bibliographic reference information about genetics, medications, clinical trials, etc. associated with knowledge-based information on genetics/genetic condition."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:description"> - <path value="Extension.extension"/> - <sliceName value="description"/> - <short value="Reference description"/> - <definition value="Concise description of the genetic reference."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:description.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:description.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="description"/> - </element> - <element id="Extension.extension:description.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:reference"> - <path value="Extension.extension"/> - <sliceName value="reference"/> - <short value="Reference URI"/> - <definition value="An absolute URI to express where to find the link."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:reference.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:reference.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="reference"/> - </element> - <element id="Extension.extension:reference.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - <element id="Extension.extension:type"> - <path value="Extension.extension"/> - <sliceName value="type"/> - <short value="Reference type"/> - <definition value="A code that classifies the type of genetic reference link."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:type.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:type.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="type"/> - </element> - <element id="Extension.extension:type.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Diagnostic-Snomed"/> - </extension> - <strength value="example"/> - <description value="Codes for diagnostic genetic reference types."/> - <valueSet value="http://hl7.org/fhir/ValueSet/diagnostic-based-on-snomed"/> - </binding> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport-geneticsReferences"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/bodySite"/> - <resource> - <StructureDefinition> - <id value="bodySite"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/bodySite"/> - <version value="4.1.0"/> - <name value="BodyStructure Reference"/> - <title value="Body Site"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Target anatomic location or structure"/> - <definition value="Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/bodySite"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/BodyStructure"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Target anatomic location or structure"/> - <definition value="Record details about the anatomical location of a specimen or body part. This resource may be used when a coded concept does not provide the necessary detail needed for the use case."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/bodySite"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/BodyStructure"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-expectation"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement-expectation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-expectation"/> - <version value="4.1.0"/> - <name value="expectation"/> - <title value="Conformance expectation"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="Defines the level of expectation associated with a given system capability."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.resource.interaction"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.resource.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.searchParam"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.operation"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.document"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.interaction"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.resource.searchInclude"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.resource.searchRevInclude"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="SHALL | SHOULD | MAY |SHOULD-NOT"/> - <definition value="Defines the level of expectation associated with a given system capability."/> - <comment value="If "SHALL NOT" is desired, use the "prohibited" modifier extension. This extension should only be used with CapabilityStatements documenting requirements, not those documenting actual system capabilities."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-expectation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConformanceExpectation"/> - </extension> - <strength value="required"/> - <description value="Indicates the degree of adherence to a specified behavior or capability expected for a system to be deemed conformant with a specification."/> - <valueSet value="http://hl7.org/fhir/ValueSet/conformance-expectation|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="SHALL | SHOULD | MAY |SHOULD-NOT"/> - <definition value="Defines the level of expectation associated with a given system capability."/> - <comment value="If "SHALL NOT" is desired, use the "prohibited" modifier extension. This extension should only be used with CapabilityStatements documenting requirements, not those documenting actual system capabilities."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement-expectation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConformanceExpectation"/> - </extension> - <strength value="required"/> - <description value="Indicates the degree of adherence to a specified behavior or capability expected for a system to be deemed conformant with a specification."/> - <valueSet value="http://hl7.org/fhir/ValueSet/conformance-expectation|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/openEHR-test"/> - <resource> - <StructureDefinition> - <id value="openEHR-test"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/openEHR-test"/> - <version value="4.1.0"/> - <name value="test"/> - <status value="draft"/> - <date value="2014-10-09"/> - <publisher value="Health Level Seven, Inc / openEHR project"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org"/> - </telecom> - </contact> - <description value="Observations that confirm or refute the risk and/or the substance."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Observations that confirm or refute"/> - <definition value="Observations that confirm or refute the risk and/or the substance."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-test"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Observations that confirm or refute"/> - <definition value="Observations that confirm or refute the risk and/or the substance."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/openEHR-test"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-supportLink"/> - <resource> - <StructureDefinition> - <id value="questionnaire-supportLink"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-supportLink"/> - <version value="4.1.0"/> - <name value="supportLink"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="A URL that resolves to additional supporting information or guidance related to the question."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Supporting information"/> - <definition value="A URL that resolves to additional supporting information or guidance related to the question."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-supportLink"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Supporting information"/> - <definition value="A URL that resolves to additional supporting information or guidance related to the question."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-supportLink"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-sequelTo"/> - <resource> - <StructureDefinition> - <id value="observation-sequelTo"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-sequelTo"/> - <version value="4.1.0"/> - <name value="sequelTo"/> - <title value="Sequel To"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="This observation follows the target observation (e.g. timed tests such as Glucose Tolerance Test)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Sequel to referenced Observation"/> - <definition value="This observation follows the target observation (e.g. timed tests such as Glucose Tolerance Test)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-sequelTo"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Sequel to referenced Observation"/> - <definition value="This observation follows the target observation (e.g. timed tests such as Glucose Tolerance Test)."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-sequelTo"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-minValueSet"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-minValueSet"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-minValueSet"/> - <version value="4.1.0"/> - <name value="minValueSet"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The minimum allowable value set, for use when the binding strength is 'required' or 'extensible'. This value set is the minimum value set that any conformant system SHALL support."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.binding"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Minimum Value Set (what system must support)"/> - <definition value="The minimum allowable value set, for use when the binding strength is 'required' or 'extensible'. This value set is the minimum value set that any conformant system SHALL support."/> - <comment value="Generally, the context of use of this extension should be specific about what it means to 'support' the value set."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-minValueSet"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Minimum Value Set (what system must support)"/> - <definition value="The minimum allowable value set, for use when the binding strength is 'required' or 'extensible'. This value set is the minimum value set that any conformant system SHALL support."/> - <comment value="Generally, the context of use of this extension should be specific about what it means to 'support' the value set."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF territory)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-minValueSet"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ValueSet"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reviewer"/> - <resource> - <StructureDefinition> - <id value="questionnaireresponse-reviewer"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reviewer"/> - <version value="4.1.0"/> - <name value="reviewer"/> - <title value="Reviewer"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Individual responsible for ensuring that the questionnaire response have been completed appropriately and signs off on the content."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Who verified completion of form?"/> - <definition value="Individual responsible for ensuring that the questionnaire response have been completed appropriately and signs off on the content."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="./participation[typeCode=VRF]/role"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reviewer"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Who verified completion of form?"/> - <definition value="Individual responsible for ensuring that the questionnaire response have been completed appropriately and signs off on the content."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="./participation[typeCode=VRF]/role"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-reviewer"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-websocket"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement2-websocket"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-websocket"/> - <version value="4.1.0"/> - <name value="websocket"/> - <title value="WebSocket"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="Where the server provides its web socket end-point."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement2.rest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Where server websocket end point is found"/> - <definition value="Where the server provides its web socket end-point."/> - <comment value="Used for web-socket based subscriptions."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-websocket"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Where server websocket end point is found"/> - <definition value="Where the server provides its web socket end-point."/> - <comment value="Used for web-socket based subscriptions."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-websocket"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/task-replaces"/> - <resource> - <StructureDefinition> - <id value="task-replaces"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/task-replaces"/> - <version value="4.1.0"/> - <name value="replaces"/> - <title value="replaces"/> - <status value="draft"/> - <date value="2017-02-16"/> - <publisher value="Health Level Seven, Inc. - FHIR I WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Completed or terminated task(s) whose function is taken by this new task."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Task"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Task(s) replaced by this Task"/> - <definition value="Completed or terminated task(s) whose function is taken by this new task."/> - <comment value="The replacement could be because the initial task was immediately rejected (due to an issue) or because the previous task was completed, but the need for the action described by the task remains ongoing."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Request.replaces"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=RPLC].target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/task-replaces"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Task"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Task(s) replaced by this Task"/> - <definition value="Completed or terminated task(s) whose function is taken by this new task."/> - <comment value="The replacement could be because the initial task was immediately rejected (due to an issue) or because the previous task was completed, but the need for the action described by the task remains ongoing."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Request.replaces"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=RPLC].target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/task-replaces"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Task"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-replaces"/> - <resource> - <StructureDefinition> - <id value="observation-replaces"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-replaces"/> - <version value="4.1.0"/> - <name value="replaces"/> - <title value="Replaces"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="This observation replaces a previous observation (i.e. a revised value)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Replaces referenced Observation"/> - <definition value="This observation replaces a previous observation (i.e. a revised value)."/> - <comment value="This is an alternative to updating the Observation with a new version with status = 'amended'or 'corrected'. The target observation is now obsolete."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-replaces"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Replaces referenced Observation"/> - <definition value="This observation replaces a previous observation (i.e. a revised value)."/> - <comment value="This is an alternative to updating the Observation with a new version with status = 'amended'or 'corrected'. The target observation is now obsolete."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-replaces"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/organizationaffiliation-primaryInd"/> - <resource> - <StructureDefinition> - <id value="organizationaffiliation-primaryInd"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/organizationaffiliation-primaryInd"/> - <version value="4.1.0"/> - <name value="primaryInd"/> - <title value="primaryInd"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Flag indicating if the specialty is the primary specialty of the provider. Normally, a practitioner will have one primary specialty, but in some cases more than one can be primary."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="OrganizationAffiliation.specialty"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicator of primary specialty"/> - <definition value="Flag indicating if the specialty is the primary specialty of the provider. Normally, a practitioner will have one primary specialty, but in some cases more than one can be primary."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/organizationaffiliation-primaryInd"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicator of primary specialty"/> - <definition value="Flag indicating if the specialty is the primary specialty of the provider. Normally, a practitioner will have one primary specialty, but in some cases more than one can be primary."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/organizationaffiliation-primaryInd"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/resource-lastReviewDate"/> - <resource> - <StructureDefinition> - <id value="resource-lastReviewDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/resource-lastReviewDate"/> - <version value="4.1.0"/> - <name value="lastReviewDate"/> - <title value="Last Review Date"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="StructureMap"/> - </context> - <context> - <type value="element"/> - <expression value="CapabilityStatement"/> - </context> - <context> - <type value="element"/> - <expression value="OperationDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="SearchParameter"/> - </context> - <context> - <type value="element"/> - <expression value="CompartmentDefinition"/> - </context> - <context> - <type value="element"/> - <expression value="ImplementationGuide"/> - </context> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <context> - <type value="element"/> - <expression value="ConceptMap"/> - </context> - <context> - <type value="element"/> - <expression value="NamingSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Last review date for the resource"/> - <definition value="The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date."/> - <comment value="If specified, this is usually after the approval date."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-lastReviewDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Last review date for the resource"/> - <definition value="The date on which the asset content was last reviewed. Review happens periodically after that, but doesn't change the original approval date."/> - <comment value="If specified, this is usually after the approval date."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/resource-lastReviewDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-researchStudy"/> - <resource> - <StructureDefinition> - <id value="workflow-researchStudy"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-researchStudy"/> - <version value="4.1.0"/> - <name value="researchStudy"/> - <title value="Associated Study"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Indicates that this event is relevant to the specified research study(ies)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Composition"/> - </context> - <context> - <type value="element"/> - <expression value="Consent"/> - </context> - <context> - <type value="element"/> - <expression value="DeviceUseStatement"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="Encounter"/> - </context> - <context> - <type value="element"/> - <expression value="FamilyMemberHistory"/> - </context> - <context> - <type value="element"/> - <expression value="Immunization"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="MedicationAdministration"/> - </context> - <context> - <type value="element"/> - <expression value="MedicationDispense"/> - </context> - <context> - <type value="element"/> - <expression value="MedicationUsage"/> - </context> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse"/> - </context> - <context> - <type value="element"/> - <expression value="RiskAssessment"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyDelivery"/> - </context> - <context> - <type value="element"/> - <expression value="Task"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated research study"/> - <definition value="Indicates that this event is relevant to the specified research study(ies)."/> - <comment value="This relevance might mean that the even occurred as part of the study protocol, but can also include events that occurred outside the study but still have relevance (e.g. adverse events, co-occurring medications, unexpected Observations, etc.)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.researchStudy"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=PERT].target[classCode=CLNTRL, moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-researchStudy"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ResearchStudy"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Associated research study"/> - <definition value="Indicates that this event is relevant to the specified research study(ies)."/> - <comment value="This relevance might mean that the even occurred as part of the study protocol, but can also include events that occurred outside the study but still have relevance (e.g. adverse events, co-occurring medications, unexpected Observations, etc.)."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.researchStudy"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=PERT].target[classCode=CLNTRL, moodCode=EVN]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-researchStudy"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ResearchStudy"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/practitioner-animalSpecies"/> - <resource> - <StructureDefinition> - <id value="practitioner-animalSpecies"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/practitioner-animalSpecies"/> - <version value="4.1.0"/> - <name value="animalSpecies"/> - <title value="animalSpecies"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This extension should be used to specifiy that a practioner or RelatedPerson resource is a service animal."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Practitioner"/> - </context> - <context> - <type value="element"/> - <expression value="RelatedPerson"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The Species of the Service Animal"/> - <definition value="This extension should be used to specifiy that a practioner or RelatedPerson resource is a service animal."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/practitioner-animalSpecies"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalSpecies"/> - </extension> - <strength value="example"/> - <description value="The species of animal."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-species"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The Species of the Service Animal"/> - <definition value="This extension should be used to specifiy that a practioner or RelatedPerson resource is a service animal."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/practitioner-animalSpecies"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AnimalSpecies"/> - </extension> - <strength value="example"/> - <description value="The species of animal."/> - <valueSet value="http://hl7.org/fhir/ValueSet/animal-species"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/event-eventHistory"/> - <resource> - <StructureDefinition> - <id value="event-eventHistory"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/event-eventHistory"/> - <version value="4.1.0"/> - <name value="eventHistory"/> - <title value="Event History"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Links to *Provenance* records for past versions of this resource that document key state transitions or updates that are deemed “relevant” or important to a user looking at the current version of the resource. E.g, when an observation was verified or corrected. This extension does not point to the Provenance associated with the current version of the resource - as it would be created after this version existed. The *Provenance* for the current version can be retrieved with a [` _revinclude`](search.html#revinclude)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="Task"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyDelivery"/> - </context> - <context> - <type value="element"/> - <expression value="DeviceUseStatement"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Events of interest in the resource lifecycle"/> - <definition value="Links to *Provenance* records for past versions of this resource that document key state transitions or updates that are deemed “relevant” or important to a user looking at the current version of the resource. E.g, when an observation was verified or corrected. This extension does not point to the Provenance associated with the current version of the resource - as it would be created after this version existed. The *Provenance* for the current version can be retrieved with a [` _revinclude`](search.html#revinclude)."/> - <comment value="May reference only *Provenance* resources deemed “relevant” or important. This element does not point to the Provenance associated with the current version of the resource - as it would be created after this version existed. The Provenance for the current version can be retrieved with a [` _revinclude`](search.html#revinclude)."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-eventHistory"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Provenance"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Events of interest in the resource lifecycle"/> - <definition value="Links to *Provenance* records for past versions of this resource that document key state transitions or updates that are deemed “relevant” or important to a user looking at the current version of the resource. E.g, when an observation was verified or corrected. This extension does not point to the Provenance associated with the current version of the resource - as it would be created after this version existed. The *Provenance* for the current version can be retrieved with a [` _revinclude`](search.html#revinclude)."/> - <comment value="May reference only *Provenance* resources deemed “relevant” or important. This element does not point to the Provenance associated with the current version of the resource - as it would be created after this version existed. The Provenance for the current version can be retrieved with a [` _revinclude`](search.html#revinclude)."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/event-eventHistory"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Provenance"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/procedure-directedBy"/> - <resource> - <StructureDefinition> - <id value="procedure-directedBy"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/procedure-directedBy"/> - <version value="4.1.0"/> - <name value="directedBy"/> - <title value="directedBy"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The target of the extension is a distinct actor from the requester and has decision-making authority over the service and takes direct responsibility to manage the service."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <context> - <type value="element"/> - <expression value="ServiceRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Who has decision-making authority"/> - <definition value="The target of the extension is a distinct actor from the requester and has decision-making authority over the service and takes direct responsibility to manage the service."/> - <comment value="For example, a long term care beneficiary who coordinates the services related to their activities of daily living."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-directedBy"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/PractitionerRole"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Who has decision-making authority"/> - <definition value="The target of the extension is a distinct actor from the requester and has decision-making authority over the service and takes direct responsibility to manage the service."/> - <comment value="For example, a long term care beneficiary who coordinates the services related to their activities of daily living."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-directedBy"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Patient"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Practitioner"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/PractitionerRole"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-warning"/> - <resource> - <StructureDefinition> - <id value="codesystem-warning"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-warning"/> - <version value="4.1.0"/> - <name value="warning"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="An extra warning about the correct use of the value set."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extra warning about the correct use of the value set"/> - <definition value="An extra warning about the correct use of the value set."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-warning"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Extra warning about the correct use of the value set"/> - <definition value="An extra warning about the correct use of the value set."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-warning"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="markdown"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/condition-outcome"/> - <resource> - <StructureDefinition> - <id value="condition-outcome"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/condition-outcome"/> - <version value="4.1.0"/> - <name value="outcome"/> - <title value="Outcome"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="A result of the condition. The "Cause of death" for a patient is typically captured as an Observation. The "outcome" doesn't imply causality. Some outcomes might not be assessable until the condition.clinicalStatus is no longer active."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A consequence of the Condition"/> - <definition value="A result of the condition. The "Cause of death" for a patient is typically captured as an Observation. The "outcome" doesn't imply causality. Some outcomes might not be assessable until the condition.clinicalStatus is no longer active."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-outcome"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionOutcome"/> - </extension> - <strength value="example"/> - <description value="Codes that describe the assessed outcome of the condition."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-outcome"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A consequence of the Condition"/> - <definition value="A result of the condition. The "Cause of death" for a patient is typically captured as an Observation. The "outcome" doesn't imply causality. Some outcomes might not be assessable until the condition.clinicalStatus is no longer active."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-outcome"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConditionOutcome"/> - </extension> - <strength value="example"/> - <description value="Codes that describe the assessed outcome of the condition."/> - <valueSet value="http://hl7.org/fhir/ValueSet/condition-outcome"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-alternate"/> - <resource> - <StructureDefinition> - <id value="codesystem-alternate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-alternate"/> - <version value="4.1.0"/> - <name value="alternate"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="An additional code that may be used to represent the concept."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem.concept"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional code for the concept"/> - <definition value="An additional code that may be used to represent the concept."/> - <comment value="Few coding systems define synonyms. A few more define alternate codes for special case use."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Code that represents the concept"/> - <definition value="The code that may be used to represent the concept."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:use"> - <path value="Extension.extension"/> - <sliceName value="use"/> - <short value="Expected use of the code"/> - <definition value="Defines why this additional code is defined."/> - <comment value="Further work is needed on the value set."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:use.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:use.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:use.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="use"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:use.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AlternativeCodeKind"/> - </extension> - <strength value="extensible"/> - <description value="Indicates the type of use for which the code is defined."/> - <valueSet value="http://hl7.org/fhir/ValueSet/codesystem-altcode-kind"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-alternate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional code for the concept"/> - <definition value="An additional code that may be used to represent the concept."/> - <comment value="Few coding systems define synonyms. A few more define alternate codes for special case use."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Code that represents the concept"/> - <definition value="The code that may be used to represent the concept."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - </element> - <element id="Extension.extension:use"> - <path value="Extension.extension"/> - <sliceName value="use"/> - <short value="Expected use of the code"/> - <definition value="Defines why this additional code is defined."/> - <comment value="Further work is needed on the value set."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:use.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:use.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="use"/> - </element> - <element id="Extension.extension:use.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AlternativeCodeKind"/> - </extension> - <strength value="extensible"/> - <description value="Indicates the type of use for which the code is defined."/> - <valueSet value="http://hl7.org/fhir/ValueSet/codesystem-altcode-kind"/> - </binding> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-alternate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/request-statusReason"/> - <resource> - <StructureDefinition> - <id value="request-statusReason"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/request-statusReason"/> - <version value="4.1.0"/> - <name value="statusReason"/> - <title value="Reason for current status"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Captures the reason for the current state of the resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DeviceRequest"/> - </context> - <context> - <type value="element"/> - <expression value="ServiceRequest"/> - </context> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reason for current status"/> - <definition value="Captures the reason for the current state of the resource."/> - <comment value="This is generally only used for "exception" statuses such as "suspended" or "cancelled". The reason for performing the request at all is captured in reasonCode, not here. (Distinct reason codes for different statuses can be enforced using invariants if they are universal bindings)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship[typeCode=SUBJ].source[classCode=CACT, moodCode=EVN].reasonCOde"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-statusReason"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StatusReason"/> - </extension> - <strength value="example"/> - <description value="Codes identifying the reason for the current state of an event."/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reason for current status"/> - <definition value="Captures the reason for the current state of the resource."/> - <comment value="This is generally only used for "exception" statuses such as "suspended" or "cancelled". The reason for performing the request at all is captured in reasonCode, not here. (Distinct reason codes for different statuses can be enforced using invariants if they are universal bindings)."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".inboundRelationship[typeCode=SUBJ].source[classCode=CACT, moodCode=EVN].reasonCOde"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/request-statusReason"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StatusReason"/> - </extension> - <strength value="example"/> - <description value="Codes identifying the reason for the current state of an event."/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/consent-ResearchStudyContext"/> - <resource> - <StructureDefinition> - <id value="consent-ResearchStudyContext"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="cbcc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/consent-ResearchStudyContext"/> - <version value="4.1.0"/> - <name value="ResearchStudyContext"/> - <title value="ResearchContext"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="Health Level Seven, Inc. - CBCC WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/homehealth/index.cfm"/> - </telecom> - </contact> - <description value="When a Research scope Consent, this is the specific research study that is allowed to use the information (or not)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Consent.provision"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Specific Research Study for Research Context"/> - <definition value="When a Research scope Consent, this is the specific research study that is allowed to use the information (or not)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-ResearchStudyContext"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ResearchStudy"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Specific Research Study for Research Context"/> - <definition value="When a Research scope Consent, this is the specific research study that is allowed to use the information (or not)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/consent-ResearchStudyContext"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ResearchStudy"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-delta"/> - <resource> - <StructureDefinition> - <id value="observation-delta"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-delta"/> - <version value="4.1.0"/> - <name value="delta"/> - <title value="delta"/> - <status value="draft"/> - <date value="2015-03-02"/> - <publisher value="Health Level Seven, Inc. - OO WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/orders"/> - </telecom> - </contact> - <description value="The qualitative change in the value relative to the previous measurement. Usually only recorded if the change is clinically significant."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Qualitative change or trend in the measurement"/> - <definition value="The qualitative change in the value relative to the previous measurement. Usually only recorded if the change is clinically significant."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-delta"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Qualitative change or trend in the measurement"/> - <definition value="The qualitative change in the value relative to the previous measurement. Usually only recorded if the change is clinically significant."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-delta"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-translatable"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-translatable"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-translatable"/> - <version value="4.1.0"/> - <name value="translatable"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="Whether translations might be expected for this element in resource instances."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether translations apply to this element"/> - <definition value="Whether translations might be expected for this element in resource instances."/> - <comment value="This is a hint to design tools (e.g. profile editors, UI builders) that translations are likely to be appropriate for this element in countries that are multi-lingual."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-translatable"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Whether translations apply to this element"/> - <definition value="Whether translations might be expected for this element in resource instances."/> - <comment value="This is a hint to design tools (e.g. profile editors, UI builders) that translations are likely to be appropriate for this element in countries that are multi-lingual."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-translatable"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-completionMode"/> - <resource> - <StructureDefinition> - <id value="questionnaireresponse-completionMode"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-completionMode"/> - <version value="4.1.0"/> - <name value="completionMode"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Indicates how the individual completing the QuestionnaireResponse provided their responses."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="QuestionnaireResponse"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. Verbal, written, electronic"/> - <definition value="Indicates how the individual completing the QuestionnaireResponse provided their responses."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-completionMode"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="CompletionMode"/> - </extension> - <strength value="required"/> - <description value="Codes indicating how the questionnaire was completed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaireresponse-mode|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. Verbal, written, electronic"/> - <definition value="Indicates how the individual completing the QuestionnaireResponse provided their responses."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaireresponse-completionMode"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="CompletionMode"/> - </extension> - <strength value="required"/> - <description value="Codes indicating how the questionnaire was completed."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaireresponse-mode|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-fhirType"/> - <resource> - <StructureDefinition> - <id value="questionnaire-fhirType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-fhirType"/> - <version value="4.1.0"/> - <name value="fhirType"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="For questionnaires generated from FHIR profiles, indicates the FHIR data type or resource type that corresponds to this node."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type!='display'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The underlying FHIR data type"/> - <definition value="For questionnaires generated from FHIR profiles, indicates the FHIR data type or resource type that corresponds to this node."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-fhirType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The underlying FHIR data type"/> - <definition value="For questionnaires generated from FHIR profiles, indicates the FHIR data type or resource type that corresponds to this node."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-fhirType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-question"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-question"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-question"/> - <version value="4.1.0"/> - <name value="question"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The default/suggested phrasing to use when prompting a human to capture the data element in question form (e.g. In a survey)."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Prompt for element phrased as question"/> - <definition value="The default/suggested phrasing to use when prompting a human to capture the data element in question form (e.g. In a survey)."/> - <comment value="Question and label serve similar purposes in they both can be used to prompt for capturing a data element. Whether the question form or label form should be used will depend on the type of instrument being used to capture the information. The ordering is in order of preference. I.e. Most preferred question form is listed first. Note that this is for alternate phrasings of the question. Language translations are handled using the ISO 21090 string translation extensions."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-question"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Prompt for element phrased as question"/> - <definition value="The default/suggested phrasing to use when prompting a human to capture the data element in question form (e.g. In a survey)."/> - <comment value="Question and label serve similar purposes in they both can be used to prompt for capturing a data element. Whether the question form or label form should be used will depend on the type of instrument being used to capture the information. The ordering is in order of preference. I.e. Most preferred question form is listed first. Note that this is for alternate phrasings of the question. Language translations are handled using the ISO 21090 string translation extensions."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-question"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-certainty"/> - <resource> - <StructureDefinition> - <id value="allergyintolerance-certainty"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-certainty"/> - <version value="4.1.0"/> - <name value="certainty"/> - <title value="certainty"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Statement about the degree of clinical certainty that the specific substance was the cause of the manifestation in this reaction event."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="AllergyIntolerance.reaction"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Certainty that the substance was the cause of the manifestation"/> - <definition value="Statement about the degree of clinical certainty that the specific substance was the cause of the manifestation in this reaction event."/> - <comment value="When certainty is missing, it means no information exists (although it could be in narrative). By contrast, the unknown code is used when there is an explicit assertion that certainty is not known, such as when a patient eats a meal and it is unknown which food caused the reaction."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="uncertaintyCode"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-certainty"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AllergyIntoleranceCertainty"/> - </extension> - <strength value="extensible"/> - <description value="Statement about the degree of clinical certainty that a specific substance was the cause of the manifestation in a reaction event."/> - <valueSet value="http://hl7.org/fhir/ValueSet/reaction-event-certainty"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Certainty that the substance was the cause of the manifestation"/> - <definition value="Statement about the degree of clinical certainty that the specific substance was the cause of the manifestation in this reaction event."/> - <comment value="When certainty is missing, it means no information exists (although it could be in narrative). By contrast, the unknown code is used when there is an explicit assertion that certainty is not known, such as when a patient eats a meal and it is unknown which food caused the reaction."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="uncertaintyCode"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/allergyintolerance-certainty"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="AllergyIntoleranceCertainty"/> - </extension> - <strength value="extensible"/> - <description value="Statement about the degree of clinical certainty that a specific substance was the cause of the manifestation in a reaction event."/> - <valueSet value="http://hl7.org/fhir/ValueSet/reaction-event-certainty"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/procedure-targetBodyStructure"/> - <resource> - <StructureDefinition> - <id value="procedure-targetBodyStructure"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/procedure-targetBodyStructure"/> - <version value="4.1.0"/> - <name value="targetBodyStructure"/> - <title value="targetBodyStructure"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The target body site used for this procedure. Multiple locations are allowed."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <context> - <type value="element"/> - <expression value="ServiceRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The target point for this procedure"/> - <definition value="The target body site used for this procedure. Multiple locations are allowed."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-targetBodyStructure"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/BodyStructure"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The target point for this procedure"/> - <definition value="The target body site used for this procedure. Multiple locations are allowed."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-targetBodyStructure"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/BodyStructure"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGene"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsGene"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGene"/> - <version value="4.1.0"/> - <name value="Gene"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="A region (or regions) that includes all of the sequence elements necessary to encode a functional transcript. A gene may include regulatory regions, transcribed regions and/or other functional sequence regions ([SO:0000704](http://www.sequenceontology.org/browser/current_svn/term/SO:0000704)). This element is the official gene symbol approved by the HGNC, which is a short abbreviated form of the gene name ([HGNC](http://www.genenames.org)). LOINC Code: ([48018-6](http://loinc.org/48018-6))."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="HGNC gene symbol"/> - <definition value="A region (or regions) that includes all of the sequence elements necessary to encode a functional transcript. A gene may include regulatory regions, transcribed regions and/or other functional sequence regions ([SO:0000704](http://www.sequenceontology.org/browser/current_svn/term/SO:0000704)). This element is the official gene symbol approved by the HGNC, which is a short abbreviated form of the gene name ([HGNC](http://www.genenames.org)). LOINC Code: ([48018-6](http://loinc.org/48018-6))."/> - <comment value="Other systems or genes not defined in HGNC (e.g., BCR-ABL fusion gene) can be added by using a local extension."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGene"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="HGNC-geneIdentifiers"/> - </extension> - <strength value="preferred"/> - <description value="International curated set of gene identifiers."/> - <valueSet value="http://hl7.org/fhir/ValueSet/genenames"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="HGNC gene symbol"/> - <definition value="A region (or regions) that includes all of the sequence elements necessary to encode a functional transcript. A gene may include regulatory regions, transcribed regions and/or other functional sequence regions ([SO:0000704](http://www.sequenceontology.org/browser/current_svn/term/SO:0000704)). This element is the official gene symbol approved by the HGNC, which is a short abbreviated form of the gene name ([HGNC](http://www.genenames.org)). LOINC Code: ([48018-6](http://loinc.org/48018-6))."/> - <comment value="Other systems or genes not defined in HGNC (e.g., BCR-ABL fusion gene) can be added by using a local extension."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsGene"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="HGNC-geneIdentifiers"/> - </extension> - <strength value="preferred"/> - <description value="International curated set of gene identifiers."/> - <valueSet value="http://hl7.org/fhir/ValueSet/genenames"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-reasonReference"/> - <resource> - <StructureDefinition> - <id value="workflow-reasonReference"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-reasonReference"/> - <version value="4.1.0"/> - <name value="reasonReference"/> - <title value="Reason Reference"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Indicates another resource whose existence justifies this event."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="NutritionOrder"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Why was event performed?"/> - <definition value="Indicates another resource whose existence justifies this event."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.reasonReference"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="EVN.4 or by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=RSON].target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-reasonReference"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DocumentReference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Why was event performed?"/> - <definition value="Indicates another resource whose existence justifies this event."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.reasonReference"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="EVN.4 or by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=RSON].target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-reasonReference"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Condition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DocumentReference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-warning"/> - <resource> - <StructureDefinition> - <id value="valueset-warning"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-warning"/> - <version value="4.1.0"/> - <name value="warning"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="An extra warning about the correct use of the value set."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extra warning about the correct use of the value set"/> - <definition value="An extra warning about the correct use of the value set."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-warning"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="markdown"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Extra warning about the correct use of the value set"/> - <definition value="An extra warning about the correct use of the value set."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-warning"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="markdown"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/practitionerrole-primaryInd"/> - <resource> - <StructureDefinition> - <id value="practitionerrole-primaryInd"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/practitionerrole-primaryInd"/> - <version value="4.1.0"/> - <name value="primaryInd"/> - <title value="primaryInd"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Flag indicating if the specialty is the primary specialty of the provider. Normally, a practitioner will have one primary specialty, but in some cases more than one can be primary."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="PractitionerRole.specialty"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicator of primary specialty"/> - <definition value="Flag indicating if the specialty is the primary specialty of the provider. Normally, a practitioner will have one primary specialty, but in some cases more than one can be primary."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/practitionerrole-primaryInd"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Indicator of primary specialty"/> - <definition value="Flag indicating if the specialty is the primary specialty of the provider. Normally, a practitioner will have one primary specialty, but in some cases more than one can be primary."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/practitionerrole-primaryInd"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationArea"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-deliveryInstallationArea"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationArea"/> - <version value="4.1.0"/> - <name value="ADXP-deliveryInstallationArea"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The location of the delivery installation, usually a town or city, and is only required if the area is different from the municipality. Area to which mail delivery service is provided from any postal facility or service such as an individual letter carrier, rural route, or postal route."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryInstallationArea"/> - <definition value="The location of the delivery installation, usually a town or city, and is only required if the area is different from the municipality. Area to which mail delivery service is provided from any postal facility or service such as an individual letter carrier, rural route, or postal route."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DINSTA]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationArea"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="deliveryInstallationArea"/> - <definition value="The location of the delivery installation, usually a town or city, and is only required if the area is different from the municipality. Area to which mail delivery service is provided from any postal facility or service such as an individual letter carrier, rural route, or postal route."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=DINSTA]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-deliveryInstallationArea"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/tz-offset"/> - <resource> - <StructureDefinition> - <id value="tz-offset"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/tz-offset"/> - <version value="4.1.0"/> - <name value="Timezone Offset"/> - <title value="Timezone offset, for date"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Timezone offset, for dates where timezone is not allowed as part of the base date."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="date"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Timezone offset, for dates (no timezone in date)"/> - <definition value="Timezone offset, for dates where timezone is not allowed as part of the base date."/> - <comment value="The format must either be 'Z' or +/-HH:NN. This is not allowed on the base date because many implementations have no way to carry a timezone on the base date structure."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/tz-offset"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Timezone offset, for dates (no timezone in date)"/> - <definition value="Timezone offset, for dates where timezone is not allowed as part of the base date."/> - <comment value="The format must either be 'Z' or +/-HH:NN. This is not allowed on the base date because many implementations have no way to carry a timezone on the base date structure."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/tz-offset"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-glstring"/> - <resource> - <StructureDefinition> - <id value="hla-genotyping-results-glstring"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-glstring"/> - <version value="4.1.0"/> - <name value="glstring"/> - <status value="draft"/> - <date value="2015-10-09"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="glstring."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="glstring"/> - <definition value="glstring."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:url"> - <path value="Extension.extension"/> - <sliceName value="url"/> - <short value="glstring.url"/> - <definition value="glstring using a URI reference."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:url.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:url.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:url.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="url"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:url.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:text"> - <path value="Extension.extension"/> - <sliceName value="text"/> - <short value="glstring.text"/> - <definition value="glstring using inline data."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:text.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:text.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:text.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="text"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:text.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-glstring"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="glstring"/> - <definition value="glstring."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:url"> - <path value="Extension.extension"/> - <sliceName value="url"/> - <short value="glstring.url"/> - <definition value="glstring using a URI reference."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:url.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:url.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="url"/> - </element> - <element id="Extension.extension:url.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - <element id="Extension.extension:text"> - <path value="Extension.extension"/> - <sliceName value="text"/> - <short value="glstring.text"/> - <definition value="glstring using inline data."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:text.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:text.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="text"/> - </element> - <element id="Extension.extension:text.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/hla-genotyping-results-glstring"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/observation-geneticsPhaseSet"/> - <resource> - <StructureDefinition> - <id value="observation-geneticsPhaseSet"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/observation-geneticsPhaseSet"/> - <version value="4.1.0"/> - <name value="PhaseSet"/> - <status value="draft"/> - <date value="2016-03-14"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="Phase set information."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Phase set"/> - <definition value="Phase set information."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Id"> - <path value="Extension.extension"/> - <sliceName value="Id"/> - <short value="Phase set ID"/> - <definition value="This is a globally unique phaseSet id."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Id.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:Id.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:Id.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="Id"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:Id.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:MolecularSequence"> - <path value="Extension.extension"/> - <sliceName value="MolecularSequence"/> - <short value="Phase set sequence"/> - <definition value="MolecularSequence pointed to phase set (from: https://www.hl7.org/fhir/STU3/extension-observation-geneticssequence.html)."/> - <min value="1"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:MolecularSequence.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:MolecularSequence.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:MolecularSequence.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="MolecularSequence"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:MolecularSequence.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MolecularSequence"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsPhaseSet"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Phase set"/> - <definition value="Phase set information."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:Id"> - <path value="Extension.extension"/> - <sliceName value="Id"/> - <short value="Phase set ID"/> - <definition value="This is a globally unique phaseSet id."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:Id.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:Id.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="Id"/> - </element> - <element id="Extension.extension:Id.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - <element id="Extension.extension:MolecularSequence"> - <path value="Extension.extension"/> - <sliceName value="MolecularSequence"/> - <short value="Phase set sequence"/> - <definition value="MolecularSequence pointed to phase set (from: https://www.hl7.org/fhir/STU3/extension-observation-geneticssequence.html)."/> - <min value="1"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:MolecularSequence.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:MolecularSequence.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="MolecularSequence"/> - </element> - <element id="Extension.extension:MolecularSequence.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MolecularSequence"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/observation-geneticsPhaseSet"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/specimen-sequenceNumber"/> - <resource> - <StructureDefinition> - <id value="specimen-sequenceNumber"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/specimen-sequenceNumber"/> - <version value="4.1.0"/> - <name value="sequenceNumber"/> - <title value="sequenceNumber"/> - <status value="draft"/> - <date value="2015-02-19"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="An assigned number on the specimen denoting the order of collection."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Specimen.container"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The sequence number of the sample"/> - <definition value="An assigned number on the specimen denoting the order of collection."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-sequenceNumber"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The sequence number of the sample"/> - <definition value="An assigned number on the specimen denoting the order of collection."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/specimen-sequenceNumber"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitType"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-unitType"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitType"/> - <version value="4.1.0"/> - <name value="ADXP-unitType"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Indicates the type of specific unit contained within a building or complex. E.g. Appartment, Floor."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="unitType"/> - <definition value="Indicates the type of specific unit contained within a building or complex. E.g. Appartment, Floor."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=UNIT]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitType"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="unitType"/> - <definition value="Indicates the type of specific unit contained within a building or complex. E.g. Appartment, Floor."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=UNIT]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitType"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-replaces"/> - <resource> - <StructureDefinition> - <id value="diagnosticReport-replaces"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-replaces"/> - <version value="4.1.0"/> - <name value="replaces"/> - <title value="Replaces"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The report replaces the target resource. For example, when a final anatomic pathology report replaces a preliminary anatomic pathology report replaces where the subsequent observation of case and report may be on more or different material (specimen). Note that this is not same concept as` DiagnosticReport.status` = preliminary of final, but industry definition of preliminary and final."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Replacement for another report"/> - <definition value="The report replaces the target resource. For example, when a final anatomic pathology report replaces a preliminary anatomic pathology report replaces where the subsequent observation of case and report may be on more or different material (specimen). Note that this is not same concept as` DiagnosticReport.status` = preliminary of final, but industry definition of preliminary and final."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-replaces"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Replacement for another report"/> - <definition value="The report replaces the target resource. For example, when a final anatomic pathology report replaces a preliminary anatomic pathology report replaces where the subsequent observation of case and report may be on more or different material (specimen). Note that this is not same concept as` DiagnosticReport.status` = preliminary of final, but industry definition of preliminary and final."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-replaces"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceResource"/> - <resource> - <StructureDefinition> - <id value="questionnaire-referenceResource"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceResource"/> - <version value="4.1.0"/> - <name value="referenceResource"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Where the type for a question is "Reference", indicates a type of resource that is permitted."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='reference'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Allowed resource for reference"/> - <definition value="Where the type for a question is "Reference", indicates a type of resource that is permitted."/> - <comment value="This extension only has meaning if the question.type = Reference. If no allowedResource extensions are present, the presumption is that any type of resource is permitted. If multiple are present, then any of the specified types are permitted."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceResource"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ResourceType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="One of the resource types defined as part of this version of FHIR."/> - <valueSet value="http://hl7.org/fhir/ValueSet/resource-types|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Allowed resource for reference"/> - <definition value="Where the type for a question is "Reference", indicates a type of resource that is permitted."/> - <comment value="This extension only has meaning if the question.type = Reference. If no allowedResource extensions are present, the presumption is that any type of resource is permitted. If multiple are present, then any of the specified types are permitted."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="N/A - MIF rather than RIM level"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-referenceResource"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ResourceType"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="One of the resource types defined as part of this version of FHIR."/> - <valueSet value="http://hl7.org/fhir/ValueSet/resource-types|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-addendumOf"/> - <resource> - <StructureDefinition> - <id value="diagnosticReport-addendumOf"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-addendumOf"/> - <version value="4.1.0"/> - <name value="addendumOf"/> - <title value="Addendum Of"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The supplements or provides additional information for the target report."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional or Supplement Content"/> - <definition value="The supplements or provides additional information for the target report."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-addendumOf"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional or Supplement Content"/> - <definition value="The supplements or provides additional information for the target report."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-addendumOf"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-library"/> - <resource> - <StructureDefinition> - <id value="cqf-library"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-library"/> - <version value="4.1.0"/> - <name value="library"/> - <title value="library"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="A reference to a Library containing the formal logic used by the artifact."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A library containing logic used by the artifact"/> - <definition value="A reference to a Library containing the formal logic used by the artifact."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-library"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Library"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A library containing logic used by the artifact"/> - <definition value="A reference to a Library containing the formal logic used by the artifact."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-library"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Library"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-usageMode"/> - <resource> - <StructureDefinition> - <id value="questionnaire-usageMode"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-usageMode"/> - <version value="4.1.0"/> - <name value="usageMode"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Identifies that the specified element should only appear in certain "modes" of operation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="capture | display | display-non-empty | capture-display | capture-display-non-empty"/> - <definition value="Identifies that the specified element should only appear in certain "modes" of operation."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-usageMode"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QuestionnaireItemUsageMode"/> - </extension> - <strength value="required"/> - <description value="Identifies the modes of usage of a questionnaire that should enable a particular questionnaire item."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaire-usage-mode|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="capture | display | display-non-empty | capture-display | capture-display-non-empty"/> - <definition value="Identifies that the specified element should only appear in certain "modes" of operation."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-usageMode"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="QuestionnaireItemUsageMode"/> - </extension> - <strength value="required"/> - <description value="Identifies the modes of usage of a questionnaire that should enable a particular questionnaire item."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaire-usage-mode|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/cqf-strengthOfRecommendation"/> - <resource> - <StructureDefinition> - <id value="cqf-strengthOfRecommendation"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/cqf-strengthOfRecommendation"/> - <version value="4.1.0"/> - <name value="strengthOfRecommendation"/> - <title value="strengthOfRecommendation"/> - <status value="draft"/> - <date value="2015-05-30"/> - <publisher value="Health Level Seven, Inc. - CDS WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/dss"/> - </telecom> - </contact> - <description value="The strength of the recommendation assigned to this reference. The code system used specifies the rating scale used to rate this recommendation while the code specifies the actual recommendation rating (represented as a coded value) associated with this recommendation."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Attachment"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The strength of the recommendation"/> - <definition value="The strength of the recommendation assigned to this reference. The code system used specifies the rating scale used to rate this recommendation while the code specifies the actual recommendation rating (represented as a coded value) associated with this recommendation."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-strengthOfRecommendation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StrengthOfRecommendationRating"/> - </extension> - <strength value="example"/> - <description value="A rating system that describes the strength of the recommendation, such as the GRADE, DynaMed, or HGPS systems."/> - <valueSet value="http://hl7.org/fhir/ValueSet/recommendation-strength"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The strength of the recommendation"/> - <definition value="The strength of the recommendation assigned to this reference. The code system used specifies the rating scale used to rate this recommendation while the code specifies the actual recommendation rating (represented as a coded value) associated with this recommendation."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/cqf-strengthOfRecommendation"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="StrengthOfRecommendationRating"/> - </extension> - <strength value="example"/> - <description value="A rating system that describes the strength of the recommendation, such as the GRADE, DynaMed, or HGPS systems."/> - <valueSet value="http://hl7.org/fhir/ValueSet/recommendation-strength"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitID"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-unitID"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitID"/> - <version value="4.1.0"/> - <name value="ADXP-unitID"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="The number or name of a specific unit contained within a building or complex, as assigned by that building or complex."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="unitID"/> - <definition value="The number or name of a specific unit contained within a building or complex, as assigned by that building or complex."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=UNID]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitID"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="unitID"/> - <definition value="The number or name of a specific unit contained within a building or complex, as assigned by that building or complex."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=UNID]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-unitID"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/organization-period"/> - <resource> - <StructureDefinition> - <id value="organization-period"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/organization-period"/> - <version value="4.1.0"/> - <name value="period"/> - <title value="Period"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The date range that this organization should be considered available."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Organization"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Extension"/> - <definition value="The date range that this organization should be considered available."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/organization-period"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Period"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <definition value="The date range that this organization should be considered available."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/organization-period"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Period"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-supported-system"/> - <resource> - <StructureDefinition> - <id value="capabilitystatement2-supported-system"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-supported-system"/> - <version value="4.1.0"/> - <name value="supported-system"/> - <title value="Supported Code System"/> - <status value="draft"/> - <date value="2014-04-12"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fhir.htm"/> - </telecom> - </contact> - <description value="A code system that is supported by the system that is not defined in a value set resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement2"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system not defined in a value set"/> - <definition value="A code system that is supported by the system that is not defined in a value set resource."/> - <comment value="Typically, this is a large terminology such as LOINC, SNOMED CT."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-supported-system"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Code system not defined in a value set"/> - <definition value="A code system that is supported by the system that is not defined in a value set resource."/> - <comment value="Typically, this is a large terminology such as LOINC, SNOMED CT."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/capabilitystatement2-supported-system"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-otherName"/> - <resource> - <StructureDefinition> - <id value="valueset-otherName"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-otherName"/> - <version value="4.1.0"/> - <name value="otherName"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Human readable names for the valueset."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Alternative names"/> - <definition value="Human readable names for the valueset."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:name"> - <path value="Extension.extension"/> - <sliceName value="name"/> - <short value="Human readable, short and specific"/> - <definition value="This name is intended to be human readable, short and as specific as possible and to convey the purpose of the value set. It is considered to be the name of the value set."/> - <comment value="This need not be unique. However some use cases require uniqueness within a namespace and therefore best practice would be to make the name unique."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:name.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:name.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:name.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:name.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:preferred"> - <path value="Extension.extension"/> - <sliceName value="preferred"/> - <short value="Which name is preferred for this language"/> - <definition value="Flag that this Name in this Name Language is the preferred human-readable signifier in this language."/> - <comment value="There may be multiple human readable names in a given language, and this flag indicates which of them is preferred for the given language."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:preferred.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:preferred.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:preferred.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="preferred"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:preferred.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-otherName"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Alternative names"/> - <definition value="Human readable names for the valueset."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:name"> - <path value="Extension.extension"/> - <sliceName value="name"/> - <short value="Human readable, short and specific"/> - <definition value="This name is intended to be human readable, short and as specific as possible and to convey the purpose of the value set. It is considered to be the name of the value set."/> - <comment value="This need not be unique. However some use cases require uniqueness within a namespace and therefore best practice would be to make the name unique."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:name.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:name.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="name"/> - </element> - <element id="Extension.extension:name.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:preferred"> - <path value="Extension.extension"/> - <sliceName value="preferred"/> - <short value="Which name is preferred for this language"/> - <definition value="Flag that this Name in this Name Language is the preferred human-readable signifier in this language."/> - <comment value="There may be multiple human readable names in a given language, and this flag indicates which of them is preferred for the given language."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:preferred.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:preferred.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="preferred"/> - </element> - <element id="Extension.extension:preferred.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-otherName"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-unit"/> - <resource> - <StructureDefinition> - <id value="questionnaire-unit"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-unit"/> - <version value="4.1.0"/> - <name value="unit"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="Provides a computable unit of measure associated with numeric questions to support subsequent computation on responses. This is for use on items of type integer and decimal, and it's purpose is to support converting the integer or decimal answer into a Quantity when extracting the data into a resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <contextInvariant value="type='integer' or type='decimal'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Unit for numeric answer"/> - <definition value="Provides a computable unit of measure associated with numeric questions to support subsequent computation on responses. This is for use on items of type integer and decimal, and it's purpose is to support converting the integer or decimal answer into a Quantity when extracting the data into a resource."/> - <comment value="The human-readable unit is conveyed as a display element. This element is for computation purposes."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-unit"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Unit for numeric answer"/> - <definition value="Provides a computable unit of measure associated with numeric questions to support subsequent computation on responses. This is for use on items of type integer and decimal, and it's purpose is to support converting the integer or decimal answer into a Quantity when extracting the data into a resource."/> - <comment value="The human-readable unit is conveyed as a display element. This element is for computation purposes."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-unit"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/location-boundary-geojson"/> - <resource> - <StructureDefinition> - <id value="location-boundary-geojson"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/location-boundary-geojson"/> - <version value="4.1.0"/> - <name value="boundary-geojson"/> - <title value="Boundary (GeoJSON)"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="A boundary shape that represents the outside edge of the location (in GeoJSON format) This shape may have holes, and disconnected shapes."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Location"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="A boundary shape that represents the outside edge of the location (in GeoJSON format)"/> - <definition value="A boundary shape that represents the outside edge of the location (in GeoJSON format) This shape may have holes, and disconnected shapes."/> - <comment value="The format of the content is GeoJSON in both the JSON and XML formats. It will be stored in the resource using the .data property, and externally referenced via the URL property. The mimetype to be used will be 'application/geo+json'."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/location-boundary-geojson"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Attachment"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="A boundary shape that represents the outside edge of the location (in GeoJSON format)"/> - <definition value="A boundary shape that represents the outside edge of the location (in GeoJSON format) This shape may have holes, and disconnected shapes."/> - <comment value="The format of the content is GeoJSON in both the JSON and XML formats. It will be stored in the resource using the .data property, and externally referenced via the URL property. The mimetype to be used will be 'application/geo+json'."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/location-boundary-geojson"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Attachment"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetAddressLine"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-streetAddressLine"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetAddressLine"/> - <version value="4.1.0"/> - <name value="ADXP-streetAddressLine"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="A street address line is frequently used instead of breaking out building number, street name, street type, etc. An address generally has only a delivery address line or a street address line, but not both."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="streetAddressLine"/> - <definition value="A street address line is frequently used instead of breaking out building number, street name, street type, etc. An address generally has only a delivery address line or a street address line, but not both."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=SAL]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetAddressLine"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="streetAddressLine"/> - <definition value="A street address line is frequently used instead of breaking out building number, street name, street type, etc. An address generally has only a delivery address line or a street address line, but not both."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=SAL]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetAddressLine"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-activityStatusDate"/> - <resource> - <StructureDefinition> - <id value="valueset-activityStatusDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-activityStatusDate"/> - <version value="4.1.0"/> - <name value="activityStatusDate"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The date when the associated Value Set Definition Version activity status is in effect."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Date when the activity status is in effect"/> - <definition value="The date when the associated Value Set Definition Version activity status is in effect."/> - <comment value="When the Activity Status is set to “Active”, the Activity Status Date defines the Effective Date which is the date-time the Value Set Definition Version becomes active. When the Activity Status is set to “Inactive”, the Activity Status Date is the date-time when the Value Set Definition version becomes Inactive. This cycle may happen multiple times. The specified time is expected to be one second after midnight UTC of the Activity Status Date. The date may be in the future. It is strongly encouraged that the Activity Status be set such that no more than one Value Set Definition Version for a single Value Set Identifier can have an Activity Status of ACTIVE at the same time within a single realm. In cases where this is not true, evaluation of the alignment of a Value Set Expansion Code Set to a specific Value Set Definition, as referenced in a CD, will be problematic. Changes to this element should never result in a new Value Set Definition Version."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-activityStatusDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="date"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Date when the activity status is in effect"/> - <definition value="The date when the associated Value Set Definition Version activity status is in effect."/> - <comment value="When the Activity Status is set to “Active”, the Activity Status Date defines the Effective Date which is the date-time the Value Set Definition Version becomes active. When the Activity Status is set to “Inactive”, the Activity Status Date is the date-time when the Value Set Definition version becomes Inactive. This cycle may happen multiple times. The specified time is expected to be one second after midnight UTC of the Activity Status Date. The date may be in the future. It is strongly encouraged that the Activity Status be set such that no more than one Value Set Definition Version for a single Value Set Identifier can have an Activity Status of ACTIVE at the same time within a single realm. In cases where this is not true, evaluation of the alignment of a Value Set Expansion Code Set to a specific Value Set Definition, as referenced in a CD, will be problematic. Changes to this element should never result in a new Value Set Definition Version."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-activityStatusDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="date"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type"/> - <resource> - <StructureDefinition> - <id value="operationdefinition-allowed-type"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type"/> - <version value="4.1.0"/> - <name value="allowed-type"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="When the base type is an abstract type (e.g. Resource or Element) then this extension defines which concrete types are allowed to be used for a parameter. In the absence of this extension, any type is allowed."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="OperationDefinition.parameter"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Which types are allowed for a parameter, when the base type is Abstract"/> - <definition value="When the base type is an abstract type (e.g. Resource or Element) then this extension defines which concrete types are allowed to be used for a parameter. In the absence of this extension, any type is allowed."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Which types are allowed for a parameter, when the base type is Abstract"/> - <definition value="When the base type is an abstract type (e.g. Resource or Element) then this extension defines which concrete types are allowed to be used for a parameter. In the absence of this extension, any type is allowed."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationdefinition-allowed-type"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/operationoutcome-detectedIssue"/> - <resource> - <StructureDefinition> - <id value="operationoutcome-detectedIssue"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/operationoutcome-detectedIssue"/> - <version value="4.1.0"/> - <name value="detectedIssue"/> - <title value="Clinical Issue"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="A reference to a stored contraindication that is the basis for this issue. A recipient can expect that the item referenced in this extension is being retained for record keeping purposes."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="OperationOutcome.issue"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to a contra-indication that is the basis for this error"/> - <definition value="A reference to a stored contraindication that is the basis for this issue. A recipient can expect that the item referenced in this extension is being retained for record keeping purposes."/> - <comment value="Operation Outcome records are transient items that are returned in response to specific interactions or operations. Contraindications are items that can be stored in the patient's records as reasons that things were not done (or done). This extension allows a transient operation outcome to refer to a persistent entry in the patient record as the basis for the outcome."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationoutcome-detectedIssue"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DetectedIssue"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Reference to a contra-indication that is the basis for this error"/> - <definition value="A reference to a stored contraindication that is the basis for this issue. A recipient can expect that the item referenced in this extension is being retained for record keeping purposes."/> - <comment value="Operation Outcome records are transient items that are returned in response to specific interactions or operations. Contraindications are items that can be stored in the patient's records as reasons that things were not done (or done). This extension allows a transient operation outcome to refer to a persistent entry in the patient record as the basis for the outcome."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/operationoutcome-detectedIssue"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DetectedIssue"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-constraint"/> - <resource> - <StructureDefinition> - <id value="questionnaire-constraint"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-constraint"/> - <version value="4.1.0"/> - <name value="constraint"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="An invariant that must be satisfied before responses to the questionnaire can be considered "complete"."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Constraint"/> - <definition value="An invariant that must be satisfied before responses to the questionnaire can be considered "complete"."/> - <comment value="This maps to the ElementDefinition.constraint element."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:key"> - <path value="Extension.extension"/> - <sliceName value="key"/> - <short value="Unique identifier"/> - <definition value="Unique id for the constraint within the questionnaire."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:key.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:key.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:key.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="key"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:key.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="id"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:requirements"> - <path value="Extension.extension"/> - <sliceName value="requirements"/> - <short value="Why needed"/> - <definition value="An explanation of why this extension is required (for documentation purposes)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:requirements.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:requirements.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:requirements.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="requirements"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:requirements.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:severity"> - <path value="Extension.extension"/> - <sliceName value="severity"/> - <short value="error|warning"/> - <definition value="Indicates how serious violating the invariant is."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:severity.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:severity.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:severity.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="severity"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:severity.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConstraintSeverity"/> - </extension> - <strength value="required"/> - <description value="How important the invariant is."/> - <valueSet value="http://hl7.org/fhir/ValueSet/constraint-severity|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:expression"> - <path value="Extension.extension"/> - <sliceName value="expression"/> - <short value="Formal rule"/> - <definition value="The FHIRPath expression of the rule for computable interpretation."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:expression.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:expression.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:expression.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="expression"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:expression.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:human"> - <path value="Extension.extension"/> - <sliceName value="human"/> - <short value="Human-readable rule"/> - <definition value="A free text expression of the rule to display to the user if the rule is violated."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:human.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:human.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:human.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="human"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:human.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:location"> - <path value="Extension.extension"/> - <sliceName value="location"/> - <short value="Relative path to elements"/> - <definition value="Relative paths to the questions this rule is enforced against."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:location.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:location.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:location.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="location"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:location.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-constraint"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Constraint"/> - <definition value="An invariant that must be satisfied before responses to the questionnaire can be considered "complete"."/> - <comment value="This maps to the ElementDefinition.constraint element."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:key"> - <path value="Extension.extension"/> - <sliceName value="key"/> - <short value="Unique identifier"/> - <definition value="Unique id for the constraint within the questionnaire."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:key.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:key.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="key"/> - </element> - <element id="Extension.extension:key.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="id"/> - </type> - </element> - <element id="Extension.extension:requirements"> - <path value="Extension.extension"/> - <sliceName value="requirements"/> - <short value="Why needed"/> - <definition value="An explanation of why this extension is required (for documentation purposes)."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:requirements.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:requirements.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="requirements"/> - </element> - <element id="Extension.extension:requirements.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:severity"> - <path value="Extension.extension"/> - <sliceName value="severity"/> - <short value="error|warning"/> - <definition value="Indicates how serious violating the invariant is."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:severity.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:severity.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="severity"/> - </element> - <element id="Extension.extension:severity.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ConstraintSeverity"/> - </extension> - <strength value="required"/> - <description value="How important the invariant is."/> - <valueSet value="http://hl7.org/fhir/ValueSet/constraint-severity|4.1.0"/> - </binding> - </element> - <element id="Extension.extension:expression"> - <path value="Extension.extension"/> - <sliceName value="expression"/> - <short value="Formal rule"/> - <definition value="The FHIRPath expression of the rule for computable interpretation."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:expression.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:expression.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="expression"/> - </element> - <element id="Extension.extension:expression.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:human"> - <path value="Extension.extension"/> - <sliceName value="human"/> - <short value="Human-readable rule"/> - <definition value="A free text expression of the rule to display to the user if the rule is violated."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:human.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:human.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="human"/> - </element> - <element id="Extension.extension:human.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:location"> - <path value="Extension.extension"/> - <sliceName value="location"/> - <short value="Relative path to elements"/> - <definition value="Relative paths to the questions this rule is enforced against."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:location.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:location.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="location"/> - </element> - <element id="Extension.extension:location.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-constraint"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version"/> - <resource> - <StructureDefinition> - <id value="structuredefinition-normative-version"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version"/> - <version value="4.1.0"/> - <name value="normative-version"/> - <title value="First Normative Version"/> - <status value="draft"/> - <date value="2014-01-31"/> - <publisher value="Health Level Seven, Inc. - [WG Name] WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="If this StructureDefinition is normative, which was the first normative version."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="StructureDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="If normative, which was the first normative version"/> - <definition value="If this StructureDefinition is normative, which was the first normative version."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FHIRVersion"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="All published FHIR Versions."/> - <valueSet value="http://hl7.org/fhir/ValueSet/FHIR-version|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="If normative, which was the first normative version"/> - <definition value="If this StructureDefinition is normative, which was the first normative version."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/structuredefinition-normative-version"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="FHIRVersion"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-isCommonBinding"> - <valueBoolean value="true"/> - </extension> - <strength value="required"/> - <description value="All published FHIR Versions."/> - <valueSet value="http://hl7.org/fhir/ValueSet/FHIR-version|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/oauth-uris"/> - <resource> - <StructureDefinition> - <id value="oauth-uris"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris"/> - <version value="4.1.0"/> - <name value="oauth-uris"/> - <status value="active"/> - <date value="2018-02-15"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Supports automated discovery of OAuth2 endpoints."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CapabilityStatement.rest.security"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Automated discovery of OAuth2 endpoints"/> - <definition value="Supports automated discovery of OAuth2 endpoints."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:authorize"> - <path value="Extension.extension"/> - <sliceName value="authorize"/> - <short value="OAuth2 "authorize" endpoint"/> - <definition value="The OAuth2 "authorize" endpoint for this FHIR server."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:authorize.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:authorize.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:authorize.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="authorize"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:authorize.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:token"> - <path value="Extension.extension"/> - <sliceName value="token"/> - <short value="OAuth2 "token" endpoint"/> - <definition value="The OAuth2 "token" endpoint for this FHIR server."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:token.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:token.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:token.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="token"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:token.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:register"> - <path value="Extension.extension"/> - <sliceName value="register"/> - <short value="OAuth2 dynamic registration endpoint"/> - <definition value="The OAuth2 dynamic registration endpoint for this FHIR server, if supported."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:register.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:register.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:register.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="register"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:register.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:manage"> - <path value="Extension.extension"/> - <sliceName value="manage"/> - <short value="User-facing authorization management entry point"/> - <definition value="The user-facing authorization management workflow entry point for this FHIR server."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:manage.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:manage.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:manage.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="manage"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:manage.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Automated discovery of OAuth2 endpoints"/> - <definition value="Supports automated discovery of OAuth2 endpoints."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension:authorize"> - <path value="Extension.extension"/> - <sliceName value="authorize"/> - <short value="OAuth2 "authorize" endpoint"/> - <definition value="The OAuth2 "authorize" endpoint for this FHIR server."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:authorize.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:authorize.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="authorize"/> - </element> - <element id="Extension.extension:authorize.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - <element id="Extension.extension:token"> - <path value="Extension.extension"/> - <sliceName value="token"/> - <short value="OAuth2 "token" endpoint"/> - <definition value="The OAuth2 "token" endpoint for this FHIR server."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:token.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:token.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="token"/> - </element> - <element id="Extension.extension:token.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - <element id="Extension.extension:register"> - <path value="Extension.extension"/> - <sliceName value="register"/> - <short value="OAuth2 dynamic registration endpoint"/> - <definition value="The OAuth2 dynamic registration endpoint for this FHIR server, if supported."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:register.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:register.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="register"/> - </element> - <element id="Extension.extension:register.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - <element id="Extension.extension:manage"> - <path value="Extension.extension"/> - <sliceName value="manage"/> - <short value="User-facing authorization management entry point"/> - <definition value="The user-facing authorization management workflow entry point for this FHIR server."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:manage.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:manage.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="manage"/> - </element> - <element id="Extension.extension:manage.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://fhir-registry.smarthealthit.org/StructureDefinition/oauth-uris"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/messageheader-response-request"/> - <resource> - <StructureDefinition> - <id value="messageheader-response-request"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="inm"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/messageheader-response-request"/> - <version value="4.1.0"/> - <name value="messageheader-response-request"/> - <title value="MessageHeader response request"/> - <status value="draft"/> - <date value="2017-01-24"/> - <publisher value="Health Level Seven, Inc. - InM Work Group"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="This extension enables the capability currently available through MSH-16 (Application Level acknowledgement) in HL7 Version 2 to declare at a message instance level whether a response is required or only upon error or success, or never."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="MessageHeader"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="messageheader initiator requests a response"/> - <definition value="This extension enables the capability currently available through MSH-16 (Application Level acknowledgement) in HL7 Version 2 to declare at a message instance level whether a response is required or only upon error or success, or never."/> - <comment value="The Message Definition data provides perhaps what would be acceptable response requests, but could not indicate for each instance what is appropriate. The initiator should be able to handle the response even if not expected."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="MSH-16"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/messageheader-response-request"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="messageheader-response-request"/> - </extension> - <strength value="required"/> - <description value="HL7-defined table of codes which identify conditions under which acknowledgments are required to be returned in response to a message."/> - <valueSet value="http://hl7.org/fhir/ValueSet/messageheader-response-request|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="messageheader initiator requests a response"/> - <definition value="This extension enables the capability currently available through MSH-16 (Application Level acknowledgement) in HL7 Version 2 to declare at a message instance level whether a response is required or only upon error or success, or never."/> - <comment value="The Message Definition data provides perhaps what would be acceptable response requests, but could not indicate for each instance what is appropriate. The initiator should be able to handle the response even if not expected."/> - <min value="1"/> - <max value="1"/> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="MSH-16"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/messageheader-response-request"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="messageheader-response-request"/> - </extension> - <strength value="required"/> - <description value="HL7-defined table of codes which identify conditions under which acknowledgments are required to be returned in response to a message."/> - <valueSet value="http://hl7.org/fhir/ValueSet/messageheader-response-request|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/humanname-own-name"/> - <resource> - <StructureDefinition> - <id value="humanname-own-name"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/humanname-own-name"/> - <version value="4.1.0"/> - <name value="own-name"/> - <status value="draft"/> - <date value="2015-11-22"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The portion of the family name that is derived from the person's own surname, as distinguished from any portion that is derived from the surname of the person's partner or spouse."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="HumanName.family"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion derived from person's own surname"/> - <definition value="The portion of the family name that is derived from the person's own surname, as distinguished from any portion that is derived from the surname of the person's partner or spouse."/> - <comment value="If the person's surname has legally changed to become (or incorporate) the surname of the person's partner or spouse, this is the person's surname immediately prior to such change. Often this is the person's "maiden name"."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="FN.3"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (BR)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-own-name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Portion derived from person's own surname"/> - <definition value="The portion of the family name that is derived from the person's own surname, as distinguished from any portion that is derived from the surname of the person's partner or spouse."/> - <comment value="If the person's surname has legally changed to become (or incorporate) the surname of the person's partner or spouse, this is the person's surname immediately prior to such change. Often this is the person's "maiden name"."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="FN.3"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="ENXP where Qualifiers = (BR)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/humanname-own-name"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/subscription-status"/> - <resource> - <StructureDefinition> - <id value="subscription-status"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/subscription-status"/> - <version value="4.1.0"/> - <name value="subscription-status"/> - <title value="Subscription Status"/> - <status value="draft"/> - <date value="2015-03-11"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The current status of this Subscription at the time this Notification was sent."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Bundle.meta"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="requested | active | error | off"/> - <definition value="The current status of this Subscription at the time this Notification was sent."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-status"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SubscriptionStatusAtEvent"/> - </extension> - <strength value="required"/> - <description value="A status code for the state of the Subscription."/> - <valueSet value="http://hl7.org/fhir/ValueSet/subscription-status-at-event|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="requested | active | error | off"/> - <definition value="The current status of this Subscription at the time this Notification was sent."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/subscription-status"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="SubscriptionStatusAtEvent"/> - </extension> - <strength value="required"/> - <description value="A status code for the state of the Subscription."/> - <valueSet value="http://hl7.org/fhir/ValueSet/subscription-status-at-event|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element"/> - <resource> - <StructureDefinition> - <id value="elementdefinition-profile-element"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element"/> - <version value="4.1.0"/> - <name value="profile-element"/> - <status value="draft"/> - <date value="2015-02-28"/> - <publisher value="Health Level Seven, Inc. - FHIR Core WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/FHIR"/> - </telecom> - </contact> - <description value="The specific element to use in the referenced profile. This is used when a backbone element is being profiled, rather than an established type."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ElementDefinition.type.profile"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Specific element for profile (for backbone elements)"/> - <definition value="The specific element to use in the referenced profile. This is used when a backbone element is being profiled, rather than an established type."/> - <comment value="The backbone element cannot be the root of the struture definition, so the starting element must be specified separately."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Specific element for profile (for backbone elements)"/> - <definition value="The specific element to use in the referenced profile. This is used when a backbone element is being profiled, rather than an established type."/> - <comment value="The backbone element cannot be the root of the struture definition, so the starting element must be specified separately."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/elementdefinition-profile-element"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-unclosed"/> - <resource> - <StructureDefinition> - <id value="valueset-unclosed"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-unclosed"/> - <version value="4.1.0"/> - <name value="unclosed"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Marks that the expansion is incomplete, and values other than those listed may be valid. This may be used because post-coordinated codes are allowed, and no practical expansion can be produced."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.expansion"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The expansion is incomplete (perhaps because of post-coordination)"/> - <definition value="Marks that the expansion is incomplete, and values other than those listed may be valid. This may be used because post-coordinated codes are allowed, and no practical expansion can be produced."/> - <comment value="This extension exists to allow for definition and use of value sets that are currently unbounded, including those for which it may always be impractical to set bounds. This can be done to allow additional learning in this space, such as exploring poorly understsood consequences of alternatives."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-unclosed"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="boolean"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The expansion is incomplete (perhaps because of post-coordination)"/> - <definition value="Marks that the expansion is incomplete, and values other than those listed may be valid. This may be used because post-coordinated codes are allowed, and no practical expansion can be produced."/> - <comment value="This extension exists to allow for definition and use of value sets that are currently unbounded, including those for which it may always be impractical to set bounds. This can be done to allow additional learning in this space, such as exploring poorly understsood consequences of alternatives."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-unclosed"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="boolean"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/procedure-causedBy"/> - <resource> - <StructureDefinition> - <id value="procedure-causedBy"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/procedure-causedBy"/> - <version value="4.1.0"/> - <name value="causedBy"/> - <title value="causedBy"/> - <status value="draft"/> - <date value="2015-02-12"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="This procedure is because of the related item."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Procedure"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Related item that caused this procedure."/> - <definition value="This procedure is because of the related item."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value=".target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-causedBy"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/AllergyIntolerance"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ImagingStudy"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Immunization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ImmunizationRecommendation"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationRequest"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationUsage"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Related item that caused this procedure."/> - <definition value="This procedure is because of the related item."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value=".target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/procedure-causedBy"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/AllergyIntolerance"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/DiagnosticReport"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/FamilyMemberHistory"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ImagingStudy"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Immunization"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ImmunizationRecommendation"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationAdministration"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationRequest"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/MedicationUsage"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Procedure"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/servicerequest-geneticsItem"/> - <resource> - <StructureDefinition> - <id value="servicerequest-geneticsItem"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/servicerequest-geneticsItem"/> - <version value="4.1.0"/> - <name value="Item"/> - <status value="draft"/> - <date value="2015-10-20"/> - <publisher value="Health Level Seven International (Clinical Genomics)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/clingenomics"/> - </telecom> - </contact> - <description value="The specific diagnostic investigations that are requested as part of this request. Sometimes, there can only be one item per request, but in most contexts, more than one investigation can be requested."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The items the orderer requested"/> - <definition value="The specific diagnostic investigations that are requested as part of this request. Sometimes, there can only be one item per request, but in most contexts, more than one investigation can be requested."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Code to indicate the item (test, panel or sequence variant) being ordered"/> - <definition value="Code to indicate the item (test, panel or sequence variant) being ordered."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:geneticsObservation"> - <path value="Extension.extension"/> - <sliceName value="geneticsObservation"/> - <short value="Indicate the genetic variant ordered to be tested"/> - <definition value="Indicate the genetic variant ordered to be tested."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:geneticsObservation.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:geneticsObservation.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:geneticsObservation.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="geneticsObservation"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:geneticsObservation.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:specimen"> - <path value="Extension.extension"/> - <sliceName value="specimen"/> - <short value="If this item relates to specific specimens"/> - <definition value="If the item is related to a specific specimen."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:specimen.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:specimen.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:specimen.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="specimen"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:specimen.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Specimen"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:status"> - <path value="Extension.extension"/> - <sliceName value="status"/> - <short value="proposed | draft | planned | requested | received | accepted | in-progress | review | completed | cancelled | suspended | rejected | failed"/> - <definition value="The status of this individual item within the order."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:status.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:status.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:status.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="status"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:status.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/servicerequest-geneticsItem"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The items the orderer requested"/> - <definition value="The specific diagnostic investigations that are requested as part of this request. Sometimes, there can only be one item per request, but in most contexts, more than one investigation can be requested."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension:code"> - <path value="Extension.extension"/> - <sliceName value="code"/> - <short value="Code to indicate the item (test, panel or sequence variant) being ordered"/> - <definition value="Code to indicate the item (test, panel or sequence variant) being ordered."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:code.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:code.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="code"/> - </element> - <element id="Extension.extension:code.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - </element> - <element id="Extension.extension:geneticsObservation"> - <path value="Extension.extension"/> - <sliceName value="geneticsObservation"/> - <short value="Indicate the genetic variant ordered to be tested"/> - <definition value="Indicate the genetic variant ordered to be tested."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:geneticsObservation.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:geneticsObservation.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="geneticsObservation"/> - </element> - <element id="Extension.extension:geneticsObservation.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Observation"/> - </type> - </element> - <element id="Extension.extension:specimen"> - <path value="Extension.extension"/> - <sliceName value="specimen"/> - <short value="If this item relates to specific specimens"/> - <definition value="If the item is related to a specific specimen."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:specimen.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:specimen.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="specimen"/> - </element> - <element id="Extension.extension:specimen.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Specimen"/> - </type> - </element> - <element id="Extension.extension:status"> - <path value="Extension.extension"/> - <sliceName value="status"/> - <short value="proposed | draft | planned | requested | received | accepted | in-progress | review | completed | cancelled | suspended | rejected | failed"/> - <definition value="The status of this individual item within the order."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - </element> - <element id="Extension.extension:status.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:status.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="status"/> - </element> - <element id="Extension.extension:status.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/servicerequest-geneticsItem"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/minLength"/> - <resource> - <StructureDefinition> - <id value="minLength"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/minLength"/> - <version value="4.1.0"/> - <name value="minLength"/> - <status value="draft"/> - <date value="2014-04-27"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="The minimum number of characters that must be present in the simple data type to be considered a "valid" instance."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="ElementDefinition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="At least this many characters"/> - <definition value="The minimum number of characters that must be present in the simple data type to be considered a "valid" instance."/> - <comment value="For base64binary, reflects the number of characters representing the encoded data, not the number of bytes of the binary data."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/minLength"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="integer"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="At least this many characters"/> - <definition value="The minimum number of characters that must be present in the simple data type to be considered a "valid" instance."/> - <comment value="For base64binary, reflects the number of characters representing the encoded data, not the number of bytes of the binary data."/> - <min value="0"/> - <max value="1"/> - <mapping> - <identity value="v2"/> - <map value="N/A"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value="N/A (MIF-level)"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/minLength"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="integer"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-buildingNumberSuffix"/> - <resource> - <StructureDefinition> - <id value="iso21090-ADXP-buildingNumberSuffix"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-buildingNumberSuffix"/> - <version value="4.1.0"/> - <name value="ADXP-buildingNumberSuffix"/> - <status value="draft"/> - <date value="2012-06-24"/> - <publisher value="Health Level Seven International (Modeling and Methodology)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/mnm"/> - </telecom> - </contact> - <description value="Any alphabetic character, fraction or other text that may appear after the numeric portion of a building number."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Address.line"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="buildingNumberSuffix"/> - <definition value="Any alphabetic character, fraction or other text that may appear after the numeric portion of a building number."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=BNS]"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-buildingNumberSuffix"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="buildingNumberSuffix"/> - <definition value="Any alphabetic character, fraction or other text that may appear after the numeric portion of a building number."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="rim"/> - <map value="ADXP[partType=BNS]"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-buildingNumberSuffix"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl"/> - <resource> - <StructureDefinition> - <id value="questionnaire-itemControl"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl"/> - <version value="4.1.0"/> - <name value="itemControl"/> - <status value="draft"/> - <date value="2013-07-04"/> - <publisher value="HL7"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org"/> - </telecom> - </contact> - <description value="The type of data entry control or structure that should be used to render the item."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Questionnaire.item"/> - </context> - <context> - <type value="element"/> - <expression value="Questionnaire.item.item"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. Fly-over, Table, Checkbox, Combo-box, Lookup, etc."/> - <definition value="The type of data entry control or structure that should be used to render the item."/> - <comment value="Different controls may be appropriate for different item types. It is up to the system rendering a questionnaire as to what controls it will support and for which data types."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ItemControl"/> - </extension> - <strength value="extensible"/> - <description value="User interface controls or widgets used for questionnaire items."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaire-item-control"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="E.g. Fly-over, Table, Checkbox, Combo-box, Lookup, etc."/> - <definition value="The type of data entry control or structure that should be used to render the item."/> - <comment value="Different controls may be appropriate for different item types. It is up to the system rendering a questionnaire as to what controls it will support and for which data types."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/questionnaire-itemControl"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ItemControl"/> - </extension> - <strength value="extensible"/> - <description value="User interface controls or widgets used for questionnaire items."/> - <valueSet value="http://hl7.org/fhir/ValueSet/questionnaire-item-control"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/rendered-value"/> - <resource> - <StructureDefinition> - <id value="rendered-value"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/rendered-value"/> - <version value="4.1.0"/> - <name value="Rendered Value"/> - <title value="Rendered Value"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="Provides a rendered version of the value intended for human display. For example, a sensitive identifier (e.g. social security number) partially obscured by asterisks; a drivers licence number with dashes inserted; a date formatted as MMM dd, yyyy; etc."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Identifier.value"/> - </context> - <context> - <type value="element"/> - <expression value="date"/> - </context> - <context> - <type value="element"/> - <expression value="dateTime"/> - </context> - <context> - <type value="element"/> - <expression value="time"/> - </context> - <context> - <type value="element"/> - <expression value="instant"/> - </context> - <context> - <type value="element"/> - <expression value="integer"/> - </context> - <context> - <type value="element"/> - <expression value="decimal"/> - </context> - <context> - <type value="element"/> - <expression value="string"/> - </context> - <context> - <type value="element"/> - <expression value="code"/> - </context> - <context> - <type value="element"/> - <expression value="canonical"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="What should be displayed to human (if default is not appropriate)"/> - <definition value="Provides a rendered version of the value intended for human display. For example, a sensitive identifier (e.g. social security number) partially obscured by asterisks; a drivers licence number with dashes inserted; a date formatted as MMM dd, yyyy; etc."/> - <comment value="In some cases, this extension may be present and the value won't be present. For example if the recipient only has permission to see a partially masked view of a value. The rendering may be realm-specific. (E.g. the use of ',' vs. '.' when rendering numbers.)."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendered-value"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="What should be displayed to human (if default is not appropriate)"/> - <definition value="Provides a rendered version of the value intended for human display. For example, a sensitive identifier (e.g. social security number) partially obscured by asterisks; a drivers licence number with dashes inserted; a date formatted as MMM dd, yyyy; etc."/> - <comment value="In some cases, this extension may be present and the value won't be present. For example if the recipient only has permission to see a partially masked view of a value. The rendering may be realm-specific. (E.g. the use of ',' vs. '.' when rendering numbers.)."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/rendered-value"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-sourceReference"/> - <resource> - <StructureDefinition> - <id value="codesystem-sourceReference"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-sourceReference"/> - <version value="4.1.0"/> - <name value="sourceReference"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="This text is intended to act as a citation to work done elsewhere that is not part of the current stewarding process where the referenced source is in some way a basis of the current value set definition."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Where did this content come from"/> - <definition value="This text is intended to act as a citation to work done elsewhere that is not part of the current stewarding process where the referenced source is in some way a basis of the current value set definition."/> - <comment value="This is not intended to be a direct link to another value set. It is only intended to support a link or textual description that indicates related material for the value set."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-sourceReference"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Where did this content come from"/> - <definition value="This text is intended to act as a citation to work done elsewhere that is not part of the current stewarding process where the referenced source is in some way a basis of the current value set definition."/> - <comment value="This is not intended to be a direct link to another value set. It is only intended to support a link or textual description that indicates related material for the value set."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-sourceReference"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesCanonical"/> - <resource> - <StructureDefinition> - <id value="workflow-instantiatesCanonical"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesCanonical"/> - <version value="4.1.0"/> - <name value="instantiatesCanonical"/> - <title value="Definition"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="The URL pointing to a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by the event or request resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyDelivery"/> - </context> - <context> - <type value="element"/> - <expression value="CommunicationRequest"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="FHIR protocol or definition"/> - <definition value="The URL pointing to a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by the event or request resource."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.instantiates"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=DEFN].target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesCanonical"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ActivityDefinition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Measure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/OperationDefinition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/PlanDefinition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Questionnaire"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="FHIR protocol or definition"/> - <definition value="The URL pointing to a FHIR-defined protocol, guideline, orderset or other definition that is adhered to in whole or in part by the event or request resource."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.instantiates"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=DEFN].target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesCanonical"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="canonical"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/ActivityDefinition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Measure"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/OperationDefinition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/PlanDefinition"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Questionnaire"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/narrativeLink"/> - <resource> - <StructureDefinition> - <id value="narrativeLink"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/narrativeLink"/> - <version value="4.1.0"/> - <name value="Narrative Link"/> - <status value="draft"/> - <date value="2013-12-05"/> - <publisher value="Health Level Seven International (FHIR Infrastructure)"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://www.hl7.org/Special/committees/fiwg"/> - </telecom> - </contact> - <description value="A human language representation of the concept (resource/element), as a url that is a reference to a portion of the narrative of a resource ([DomainResource.text](narrative.html))."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Element"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Narrative Link"/> - <definition value="A human language representation of the concept (resource/element), as a url that is a reference to a portion of the narrative of a resource ([DomainResource.text](narrative.html))."/> - <comment value="It's also possible to link to the resource narrative using the [originalText extension](extension-originaltext.html) which claims that the data is derived from the text provided or linked to."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/narrativeLink"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="url"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Narrative Link"/> - <definition value="A human language representation of the concept (resource/element), as a url that is a reference to a portion of the narrative of a resource ([DomainResource.text](narrative.html))."/> - <comment value="It's also possible to link to the resource narrative using the [originalText extension](extension-originaltext.html) which claims that the data is derived from the text provided or linked to."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/narrativeLink"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="url"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-otherConfidentiality"/> - <resource> - <StructureDefinition> - <id value="composition-clinicaldocument-otherConfidentiality"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="sd"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-otherConfidentiality"/> - <version value="4.1.0"/> - <name value="otherConfidentiality"/> - <status value="draft"/> - <date value="2015-03-17"/> - <publisher value="Health Level Seven, Inc. - Structured Documents WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/structure"/> - </telecom> - </contact> - <description value="Carries additional confidentiality codes beyond the base fixed code specified in the CDA document."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Composition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional confidentiality codes"/> - <definition value="Carries additional confidentiality codes beyond the base fixed code specified in the CDA document."/> - <comment value="Typically, this is used where an institution has their own set of confidentiality codes that have different granularity that the base CDA codes, or for legacy reasons. For security-related codes other than confidentiality, see [[security-labels-html]]."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-otherConfidentiality"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Coding"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Additional confidentiality codes"/> - <definition value="Carries additional confidentiality codes beyond the base fixed code specified in the CDA document."/> - <comment value="Typically, this is used where an institution has their own set of confidentiality codes that have different granularity that the base CDA codes, or for legacy reasons. For security-related codes other than confidentiality, see [[security-labels-html]]."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/composition-clinicaldocument-otherConfidentiality"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Coding"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-relatedPerson"/> - <resource> - <StructureDefinition> - <id value="patient-relatedPerson"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-relatedPerson"/> - <version value="4.1.0"/> - <name value="relatedPerson"/> - <title value="relatedPerson"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="In some cases a Patient.contact will also be populated as a RelatedPerson resource. This linkage permits the linkage between the 2 resources to be able to accurately indicate a representation of the same individual, and updating details between could be appropriate."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient.contact"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="This contact may have further details in this RelatedPerson"/> - <definition value="In some cases a Patient.contact will also be populated as a RelatedPerson resource. This linkage permits the linkage between the 2 resources to be able to accurately indicate a representation of the same individual, and updating details between could be appropriate."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-relatedPerson"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="This contact may have further details in this RelatedPerson"/> - <definition value="In some cases a Patient.contact will also be populated as a RelatedPerson resource. This linkage permits the linkage between the 2 resources to be able to accurately indicate a representation of the same individual, and updating details between could be appropriate."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-relatedPerson"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RelatedPerson"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/patient-religion"/> - <resource> - <StructureDefinition> - <id value="patient-religion"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pa"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/patient-religion"/> - <version value="4.1.0"/> - <name value="religion"/> - <title value="religion"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="The patient's professed religious affiliations."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Patient"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="The patient's professed religious affiliations"/> - <definition value="The patient's professed religious affiliations."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-religion"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="CodeableConcept"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Religion"/> - </extension> - <strength value="extensible"/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-ReligiousAffiliation"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="The patient's professed religious affiliations"/> - <definition value="The patient's professed religious affiliations."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/patient-religion"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="CodeableConcept"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="Religion"/> - </extension> - <strength value="extensible"/> - <valueSet value="http://terminology.hl7.org/ValueSet/v3-ReligiousAffiliation"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-risk"/> - <resource> - <StructureDefinition> - <id value="diagnosticReport-risk"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="oo"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-risk"/> - <version value="4.1.0"/> - <name value="risk"/> - <title value="Risk"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="Provides a link to an assessment of prognosis or risk as informed by the diagnostic results (For example, genetic results and possibly by patient genetic family history information). This extension is used when need RiskAssessment as an alternate choice for `Observation.hasMember` or `DiagnosticReport.result`."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Risk"/> - <definition value="Provides a link to an assessment of prognosis or risk as informed by the diagnostic results (For example, genetic results and possibly by patient genetic family history information). This extension is used when need RiskAssessment as an alternate choice for `Observation.hasMember` or `DiagnosticReport.result`."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-risk"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RiskAssessment"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Risk"/> - <definition value="Provides a link to an assessment of prognosis or risk as informed by the diagnostic results (For example, genetic results and possibly by patient genetic family history information). This extension is used when need RiskAssessment as an alternate choice for `Observation.hasMember` or `DiagnosticReport.result`."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/diagnosticReport-risk"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/RiskAssessment"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-author"/> - <resource> - <StructureDefinition> - <id value="codesystem-author"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-author"/> - <version value="4.1.0"/> - <name value="author"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="User or Org actually involved in creating the value set content."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="User or Org actually involved in creating the value set content"/> - <definition value="User or Org actually involved in creating the value set content."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-author"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="User or Org actually involved in creating the value set content"/> - <definition value="User or Org actually involved in creating the value set content."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-author"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesUri"/> - <resource> - <StructureDefinition> - <id value="workflow-instantiatesUri"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesUri"/> - <version value="4.1.0"/> - <name value="instantiatesUri"/> - <title value="Definition"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by the event or request resource."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="workflow"/> - <uri value="http://hl7.org/fhir/workflow"/> - <name value="Workflow Pattern"/> - </mapping> - <mapping> - <identity value="v2"/> - <uri value="http://hl7.org/v2"/> - <name value="HL7 v2 Mapping"/> - </mapping> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="DocumentReference"/> - </context> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyDelivery"/> - </context> - <context> - <type value="element"/> - <expression value="CommunicationRequest"/> - </context> - <context> - <type value="element"/> - <expression value="SupplyRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="External protocol or definition"/> - <definition value="The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by the event or request resource."/> - <comment value="This may be an HTML page, PDF, etc. or could just be a non-resolvable URI identifier."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - <mapping> - <identity value="workflow"/> - <map value="Event.instantiates"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=DEFN].target"/> - </mapping> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesUri"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="External protocol or definition"/> - <definition value="The URL pointing to an externally maintained protocol, guideline, orderset or other definition that is adhered to in whole or in part by the event or request resource."/> - <comment value="This may be an HTML page, PDF, etc. or could just be a non-resolvable URI identifier."/> - <min value="0"/> - <max value="*"/> - <mapping> - <identity value="workflow"/> - <map value="Event.instantiates"/> - </mapping> - <mapping> - <identity value="v2"/> - <map value="Varies by domain"/> - </mapping> - <mapping> - <identity value="rim"/> - <map value=".outboundRelationship[typeCode=DEFN].target"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-instantiatesUri"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="uri"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/list-changeBase"/> - <resource> - <StructureDefinition> - <id value="list-changeBase"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/list-changeBase"/> - <version value="4.1.0"/> - <name value="changeBase"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Reference to the List that a "change" list is asserting changes with respect to."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="List"/> - </context> - <contextInvariant value="mode = 'changes'"/> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Base List for changes"/> - <definition value="Reference to the List that a "change" list is asserting changes with respect to."/> - <comment value="Only for mode = changes."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/list-changeBase"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/List"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Base List for changes"/> - <definition value="Reference to the List that a "change" list is asserting changes with respect to."/> - <comment value="Only for mode = changes."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/list-changeBase"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/List"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/condition-assertedDate"/> - <resource> - <StructureDefinition> - <id value="condition-assertedDate"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="pc"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/condition-assertedDate"/> - <version value="4.1.0"/> - <name value="assertedDate"/> - <title value="assertedDate"/> - <status value="draft"/> - <date value="2015-02-21"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="HL7"/> - </telecom> - </contact> - <description value="The date on which the existence of the Condition was first asserted or acknowledged."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="Condition"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Date the condition was first asserted"/> - <definition value="The date on which the existence of the Condition was first asserted or acknowledged."/> - <comment value="The assertedDate is in the context of the recording practitioner and might not be the same as the recordedDate."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-assertedDate"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Date the condition was first asserted"/> - <definition value="The date on which the existence of the Condition was first asserted or acknowledged."/> - <comment value="The assertedDate is in the context of the recording practitioner and might not be the same as the recordedDate."/> - <min value="0"/> - <max value="1"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/condition-assertedDate"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/codesystem-history"/> - <resource> - <StructureDefinition> - <id value="codesystem-history"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/codesystem-history"/> - <version value="4.1.0"/> - <name value="history"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Information on changes made to the Value Set Definition over time, and also has a contained audit trail of all such changes."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="CodeSystem"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="What has happened over time"/> - <definition value="Information on changes made to the Value Set Definition over time, and also has a contained audit trail of all such changes."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Additional content defined by implementations"/> - <definition value="May be used to represent additional information that is not part of the basic definition of the element. To make the use of extensions safe and manageable, there is a strict set of governance applied to the definition and use of extensions. Though any implementer can define an extension, there is a set of requirements that SHALL be met as part of the definition of the extension."/> - <comment value="There can be no stigma associated with the use of extensions by any application, project, or standard - regardless of the institution or jurisdiction that uses or defines the extensions. The use of extensions is what allows the FHIR specification to retain a core level of simplicity for everyone."/> - <alias value="extensions"/> - <alias value="user content"/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:name"> - <path value="Extension.extension"/> - <sliceName value="name"/> - <short value="The name of this set of history entries"/> - <definition value="Label for a set of entries, such as a version."/> - <comment value="Typically, a value set will have a set of history entries for each major publication milestone."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:name.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:name.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:name.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="name"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:name.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision"> - <path value="Extension.extension"/> - <sliceName value="revision"/> - <short value="Audit of all changes for a history entry"/> - <definition value="A list of specific changes, who made them and when."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.id"> - <path value="Extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension"> - <path value="Extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:date"> - <path value="Extension.extension.extension"/> - <sliceName value="date"/> - <short value="Date the change was made"/> - <definition value="Date the change took place."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:date.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:date.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:date.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="date"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:date.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="dateTime"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:id"> - <path value="Extension.extension.extension"/> - <sliceName value="id"/> - <short value="Version marker after the change was made"/> - <definition value="Unique id for the specific change."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:id.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:id.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:id.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="id"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:id.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:author"> - <path value="Extension.extension.extension"/> - <sliceName value="author"/> - <short value="Who made the change"/> - <definition value="Person or device responsible for the change."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:author.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:author.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:author.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="author"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:author.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:notes"> - <path value="Extension.extension.extension"/> - <sliceName value="notes"/> - <short value="Information about the change"/> - <definition value="Description of exactly what was changed and how."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:notes.id"> - <path value="Extension.extension.extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:notes.extension"> - <path value="Extension.extension.extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.extension:revision.extension:notes.url"> - <path value="Extension.extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="notes"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.extension:notes.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="string"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.url"> - <path value="Extension.extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <code value="uri"/> - </type> - <fixedUri value="revision"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.extension:revision.value[x]"> - <path value="Extension.extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-history"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="base64Binary"/> - </type> - <type> - <code value="boolean"/> - </type> - <type> - <code value="canonical"/> - </type> - <type> - <code value="code"/> - </type> - <type> - <code value="date"/> - </type> - <type> - <code value="dateTime"/> - </type> - <type> - <code value="decimal"/> - </type> - <type> - <code value="id"/> - </type> - <type> - <code value="instant"/> - </type> - <type> - <code value="integer"/> - </type> - <type> - <code value="markdown"/> - </type> - <type> - <code value="oid"/> - </type> - <type> - <code value="positiveInt"/> - </type> - <type> - <code value="string"/> - </type> - <type> - <code value="time"/> - </type> - <type> - <code value="unsignedInt"/> - </type> - <type> - <code value="uri"/> - </type> - <type> - <code value="url"/> - </type> - <type> - <code value="uuid"/> - </type> - <type> - <code value="Address"/> - </type> - <type> - <code value="Age"/> - </type> - <type> - <code value="Annotation"/> - </type> - <type> - <code value="Attachment"/> - </type> - <type> - <code value="CodeableConcept"/> - </type> - <type> - <code value="Coding"/> - </type> - <type> - <code value="ContactPoint"/> - </type> - <type> - <code value="Count"/> - </type> - <type> - <code value="Distance"/> - </type> - <type> - <code value="Duration"/> - </type> - <type> - <code value="HumanName"/> - </type> - <type> - <code value="Identifier"/> - </type> - <type> - <code value="Money"/> - </type> - <type> - <code value="Period"/> - </type> - <type> - <code value="Quantity"/> - </type> - <type> - <code value="Range"/> - </type> - <type> - <code value="Ratio"/> - </type> - <type> - <code value="Reference"/> - </type> - <type> - <code value="SampledData"/> - </type> - <type> - <code value="Signature"/> - </type> - <type> - <code value="Timing"/> - </type> - <type> - <code value="ContactDetail"/> - </type> - <type> - <code value="Contributor"/> - </type> - <type> - <code value="DataRequirement"/> - </type> - <type> - <code value="Expression"/> - </type> - <type> - <code value="ParameterDefinition"/> - </type> - <type> - <code value="RelatedArtifact"/> - </type> - <type> - <code value="TriggerDefinition"/> - </type> - <type> - <code value="UsageContext"/> - </type> - <type> - <code value="Dosage"/> - </type> - <type> - <code value="Meta"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="What has happened over time"/> - <definition value="Information on changes made to the Value Set Definition over time, and also has a contained audit trail of all such changes."/> - <min value="0"/> - <max value="*"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension:name"> - <path value="Extension.extension"/> - <sliceName value="name"/> - <short value="The name of this set of history entries"/> - <definition value="Label for a set of entries, such as a version."/> - <comment value="Typically, a value set will have a set of history entries for each major publication milestone."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:name.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:name.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="name"/> - </element> - <element id="Extension.extension:name.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:revision"> - <path value="Extension.extension"/> - <sliceName value="revision"/> - <short value="Audit of all changes for a history entry"/> - <definition value="A list of specific changes, who made them and when."/> - <min value="0"/> - <max value="*"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:revision.extension"> - <path value="Extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:revision.extension:date"> - <path value="Extension.extension.extension"/> - <sliceName value="date"/> - <short value="Date the change was made"/> - <definition value="Date the change took place."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:revision.extension:date.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:revision.extension:date.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="date"/> - </element> - <element id="Extension.extension:revision.extension:date.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="dateTime"/> - </type> - </element> - <element id="Extension.extension:revision.extension:id"> - <path value="Extension.extension.extension"/> - <sliceName value="id"/> - <short value="Version marker after the change was made"/> - <definition value="Unique id for the specific change."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:revision.extension:id.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:revision.extension:id.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="id"/> - </element> - <element id="Extension.extension:revision.extension:id.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:revision.extension:author"> - <path value="Extension.extension.extension"/> - <sliceName value="author"/> - <short value="Who made the change"/> - <definition value="Person or device responsible for the change."/> - <min value="1"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:revision.extension:author.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:revision.extension:author.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="author"/> - </element> - <element id="Extension.extension:revision.extension:author.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:revision.extension:notes"> - <path value="Extension.extension.extension"/> - <sliceName value="notes"/> - <short value="Information about the change"/> - <definition value="Description of exactly what was changed and how."/> - <min value="0"/> - <max value="1"/> - <type> - <code value="Extension"/> - </type> - <isModifier value="false"/> - </element> - <element id="Extension.extension:revision.extension:notes.extension"> - <path value="Extension.extension.extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.extension:revision.extension:notes.url"> - <path value="Extension.extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="notes"/> - </element> - <element id="Extension.extension:revision.extension:notes.value[x]"> - <path value="Extension.extension.extension.value[x]"/> - <min value="1"/> - <type> - <code value="string"/> - </type> - </element> - <element id="Extension.extension:revision.url"> - <path value="Extension.extension.url"/> - <type> - <code value="uri"/> - </type> - <fixedUri value="revision"/> - </element> - <element id="Extension.extension:revision.value[x]"> - <path value="Extension.extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/codesystem-history"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="0"/> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/workflow-supportingInfo"/> - <resource> - <StructureDefinition> - <id value="workflow-supportingInfo"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="fhir"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/workflow-supportingInfo"/> - <version value="4.1.0"/> - <name value="supportingInfo"/> - <title value="Supporting Information"/> - <status value="draft"/> - <date value="2017-12-06"/> - <publisher value="Health Level Seven, Inc. - FHIR WG"/> - <contact> - <telecom> - <system value="url"/> - <value value="http://hl7.org/special/committees/fwg"/> - </telecom> - </contact> - <description value="Other resources *from the patient record* that may be relevant to the event. The information from these resources was either used to create the instance or is provided to help with its interpretation. This extension **should not** be used if more specific inline elements or extensions are available. For example, use `Observation.hasMember` instead of supportingInformation for representing the members of an Observation panel."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="DiagnosticReport"/> - </context> - <context> - <type value="element"/> - <expression value="Observation"/> - </context> - <context> - <type value="element"/> - <expression value="CommunicationRequest"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Other information that may be relevant to this event."/> - <definition value="Other resources *from the patient record* that may be relevant to the event. The information from these resources was either used to create the instance or is provided to help with its interpretation. This extension **should not** be used if more specific inline elements or extensions are available. For example, use `Observation.hasMember` instead of supportingInformation for representing the members of an Observation panel."/> - <min value="0"/> - <max value="*"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-supportingInfo"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Other information that may be relevant to this event."/> - <definition value="Other resources *from the patient record* that may be relevant to the event. The information from these resources was either used to create the instance or is provided to help with its interpretation. This extension **should not** be used if more specific inline elements or extensions are available. For example, use `Observation.hasMember` instead of supportingInformation for representing the members of an Observation panel."/> - <min value="0"/> - <max value="*"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/workflow-supportingInfo"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="Reference"/> - <targetProfile value="http://hl7.org/fhir/StructureDefinition/Resource"/> - </type> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> - <entry> - <fullUrl value="http://hl7.org/fhir/StructureDefinition/valueset-parameterSource"/> - <resource> - <StructureDefinition> - <id value="valueset-parameterSource"/> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> - <valueCode value="vocab"/> - </extension> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> - <valueInteger value="1"/> - </extension> - <url value="http://hl7.org/fhir/StructureDefinition/valueset-parameterSource"/> - <version value="4.1.0"/> - <name value="parameterSource"/> - <status value="draft"/> - <date value="2019-11-09T18:02:45+00:00"/> - <publisher value="HL7"/> - <description value="Declares what the source of this parameter is."/> - <fhirVersion value="4.1.0"/> - <mapping> - <identity value="rim"/> - <uri value="http://hl7.org/v3"/> - <name value="RIM Mapping"/> - </mapping> - <kind value="complex-type"/> - <abstract value="false"/> - <context> - <type value="element"/> - <expression value="ValueSet.expansion.parameter"/> - </context> - <type value="Extension"/> - <baseDefinition value="http://hl7.org/fhir/StructureDefinition/Extension"/> - <derivation value="constraint"/> - <snapshot> - <element id="Extension"> - <path value="Extension"/> - <short value="Declares the source of the parameter"/> - <definition value="Declares what the source of this parameter is."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Extension"/> - <min value="0"/> - <max value="*"/> - </base> - <condition value="ele-1"/> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), 'value')])"/> - <source value="http://hl7.org/fhir/StructureDefinition/Extension"/> - </constraint> - <isModifier value="false"/> - </element> - <element id="Extension.id"> - <path value="Extension.id"/> - <representation value="xmlAttr"/> - <short value="Unique id for inter-element referencing"/> - <definition value="Unique id for the element within a resource (for internal references). This may be any string value that does not contain spaces."/> - <min value="0"/> - <max value="1"/> - <base> - <path value="Element.id"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="string"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="n/a"/> - </mapping> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <slicing> - <discriminator> - <type value="value"/> - <path value="url"/> - </discriminator> - <description value="Extensions are always sliced by (at least) url"/> - <rules value="open"/> - </slicing> - <short value="Extension"/> - <definition value="An Extension"/> - <min value="0"/> - <max value="0"/> - <base> - <path value="Element.extension"/> - <min value="0"/> - <max value="*"/> - </base> - <type> - <code value="Extension"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <constraint> - <key value="ext-1"/> - <severity value="error"/> - <human value="Must have either extensions or value[x], not both"/> - <expression value="extension.exists() != value.exists()"/> - <xpath value="exists(f:extension)!=exists(f:*[starts-with(local-name(.), "value")])"/> - <source value="Extension"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <representation value="xmlAttr"/> - <short value="identifies the meaning of the extension"/> - <definition value="Source of the definition for the extension code - a logical name or a URL."/> - <comment value="The definition may point directly to a computable or human-readable definition of the extensibility codes, or it may be a logical URI as declared in some other specification. The definition SHALL be a URI for the Structure Definition defining the extension."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.url"/> - <min value="1"/> - <max value="1"/> - </base> - <type> - <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fhir-type"> - <valueUri value="uri"/> - </extension> - <code value="http://hl7.org/fhirpath/System.String"/> - </type> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-parameterSource"/> - <isModifier value="false"/> - <isSummary value="false"/> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <short value="Value of extension"/> - <definition value="Value of extension - must be one of a constrained set of the data types (see [Extensibility](extensibility.html) for a list)."/> - <min value="1"/> - <max value="1"/> - <base> - <path value="Extension.value[x]"/> - <min value="0"/> - <max value="1"/> - </base> - <type> - <code value="code"/> - </type> - <constraint> - <key value="ele-1"/> - <severity value="error"/> - <human value="All FHIR elements must have a @value or children"/> - <expression value="hasValue() or (children().count() > id.count())"/> - <xpath value="@value|f:*|h:div"/> - <source value="Element"/> - </constraint> - <isModifier value="false"/> - <isSummary value="false"/> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ExpansionParameterSource"/> - </extension> - <strength value="required"/> - <description value="Declares what the source of a parameter is."/> - <valueSet value="http://hl7.org/fhir/ValueSet/expansion-parameter-source|4.1.0"/> - </binding> - <mapping> - <identity value="rim"/> - <map value="N/A"/> - </mapping> - </element> - </snapshot> - <differential> - <element id="Extension"> - <path value="Extension"/> - <short value="Declares the source of the parameter"/> - <definition value="Declares what the source of this parameter is."/> - <min value="0"/> - <max value="1"/> - <isModifier value="false"/> - </element> - <element id="Extension.extension"> - <path value="Extension.extension"/> - <max value="0"/> - </element> - <element id="Extension.url"> - <path value="Extension.url"/> - <fixedUri value="http://hl7.org/fhir/StructureDefinition/valueset-parameterSource"/> - </element> - <element id="Extension.value[x]"> - <path value="Extension.value[x]"/> - <min value="1"/> - <type> - <code value="code"/> - </type> - <binding> - <extension url="http://hl7.org/fhir/StructureDefinition/elementdefinition-bindingName"> - <valueString value="ExpansionParameterSource"/> - </extension> - <strength value="required"/> - <description value="Declares what the source of a parameter is."/> - <valueSet value="http://hl7.org/fhir/ValueSet/expansion-parameter-source|4.1.0"/> - </binding> - </element> - </differential> - </StructureDefinition> - </resource> - </entry> -</Bundle> \ No newline at end of file + <id value="extensions"></id> + <meta> + <lastUpdated value="2020-01-04T07:45:11.521+00:00"></lastUpdated> + </meta> + <type value="collection"></type> + <entry> + <fullUrl value="http://hl7.org/fhir/StructureDefinition/data-absent-reason"></fullUrl> + <resource> + <StructureDefinition xmlns="http://hl7.org/fhir"> + <id value="data-absent-reason"></id> + <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-wg"> + <valueCode value="fhir"></valueCode> + </extension> + <extension url="http://hl7.org/fhir/StructureDefinition/structuredefinition-fmm"> + <valueInteger value="1"></valueInteger> + </extension> + <url value="http://hl7.org/fhir/StructureDefinition/data-absent-reason"></url> + <version value="4.2.0"></version> + <name value="Data Absent Reason"></name> + <title value="Why value is missing"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-others.xml b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-others.xml index f77e3347a9b..557e8e1900d 100644 --- a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-others.xml +++ b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-others.xml @@ -1,7 +1,7 @@ - + @@ -19,14 +19,14 @@ - + - + - + @@ -65,53 +65,7 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -128,10 +82,6 @@ - - - - @@ -151,7 +101,7 @@ - + @@ -522,7 +472,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -625,7 +575,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -1583,7 +1533,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -1677,7 +1627,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -1862,7 +1812,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2081,7 +2031,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2292,7 +2242,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2503,7 +2453,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2815,7 +2765,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2828,7 +2778,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2962,7 +2912,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3177,7 +3127,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -3519,7 +3468,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3574,7 +3523,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3671,7 +3620,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -4268,19 +4217,20 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + @@ -4309,54 +4259,24 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - + + + + + @@ -4378,7 +4298,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -4393,52 +4313,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -4753,14 +4627,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -4877,7 +4751,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5228,7 +5102,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5456,7 +5330,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5740,7 +5614,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5962,14 +5836,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -6086,7 +5960,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6437,7 +6311,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6665,7 +6539,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6949,7 +6823,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7171,7 +7045,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7184,7 +7058,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7317,7 +7191,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7533,7 +7407,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -7574,7 +7447,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -7611,7 +7483,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -7822,7 +7693,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8202,20 +8073,26 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + + + + + + @@ -8237,7 +8114,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8248,49 +8125,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -8368,7 +8202,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8673,7 +8507,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -9014,14 +8848,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -9060,65 +8894,15 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -9142,7 +8926,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -9525,7 +9309,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -9636,7 +9420,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -10437,7 +10221,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -10540,7 +10324,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -10573,7 +10357,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -10724,7 +10508,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -10850,7 +10634,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -11191,7 +10975,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -11455,14 +11239,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -11566,7 +11350,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12031,7 +11815,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12075,7 +11859,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12118,7 +11902,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12308,52 +12092,19 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -12371,7 +12122,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12454,7 +12205,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12683,7 +12434,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12790,7 +12541,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12917,7 +12668,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12985,7 +12736,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13136,7 +12887,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13315,7 +13066,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13349,7 +13100,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13382,7 +13133,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13415,7 +13166,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13448,7 +13199,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13599,7 +13350,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13612,7 +13363,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13738,7 +13489,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -14365,7 +14116,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -14699,7 +14450,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -15028,7 +14779,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -15154,7 +14905,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -15392,7 +15143,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -15405,7 +15156,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -15452,53 +15203,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -15515,10 +15220,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -15542,7 +15243,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -15758,7 +15459,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -15957,7 +15657,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -16077,7 +15777,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -16165,7 +15865,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -16760,7 +16460,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -16899,7 +16599,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or * maxLength (ElementDefinition.maxLength) * answerValueSet (ElementDefinition.binding) * options (ElementDefinition.binding)."> - + @@ -17060,7 +16760,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -17120,7 +16820,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -17276,7 +16976,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -17381,7 +17081,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -17603,7 +17303,7 @@ The value may come from the ElementDefinition referred to by .definition."> - + @@ -17831,7 +17531,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -18068,14 +17768,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -18114,53 +17814,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -18170,8 +17824,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -18192,7 +17846,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -18566,7 +18220,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -18643,7 +18297,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -19052,7 +18706,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -19274,7 +18928,7 @@ The Value Set Definition specification defines an ActiveOnly element, which is t - + @@ -19480,7 +19134,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -19676,7 +19330,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -19916,7 +19570,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -20072,7 +19726,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -20238,7 +19892,7 @@ Expansion.parameter is a simplified list of parameters - a subset of the featur - + @@ -20479,7 +20133,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -20683,7 +20337,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -20889,7 +20543,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -21207,7 +20861,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -21487,7 +21141,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -21501,7 +21155,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -21544,53 +21198,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -21599,10 +21207,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -21622,7 +21226,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -21992,7 +21596,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -22120,7 +21724,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -22701,7 +22305,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -22769,7 +22373,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -23135,7 +22739,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -23387,14 +22991,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -23433,7 +23037,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -23448,57 +23052,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -23519,7 +23077,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -23889,7 +23447,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -23966,7 +23524,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -24388,7 +23946,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -24476,7 +24034,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -24572,7 +24130,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -24748,7 +24306,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24818,7 +24376,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25019,7 +24577,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25065,7 +24623,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25277,7 +24835,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25514,7 +25072,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25836,14 +25394,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -25947,7 +25505,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -26162,7 +25720,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -26386,7 +25943,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -26541,52 +26098,19 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -26604,7 +26128,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -26814,7 +26338,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -26827,7 +26351,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -26979,7 +26503,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -27391,7 +26915,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -27561,7 +27085,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -27675,7 +27199,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -28300,7 +27824,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -28744,7 +28268,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29315,7 +28839,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -29328,7 +28852,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -29480,7 +29004,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -29696,7 +29220,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -29731,7 +29254,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -29775,7 +29297,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -29810,7 +29331,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -29853,7 +29373,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -29888,7 +29407,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -29924,7 +29442,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -29967,7 +29484,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -30002,7 +29518,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -30037,7 +29552,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -30268,7 +29782,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -30438,7 +29952,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -31130,7 +30644,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -31578,7 +31092,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -32132,7 +31646,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -32146,7 +31660,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -32305,7 +31819,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -32715,7 +32229,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -33369,7 +32883,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34068,7 +33582,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -34524,7 +34038,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34744,7 +34258,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34929,7 +34443,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -35131,7 +34645,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -35166,7 +34680,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -35180,7 +34694,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -35340,7 +34854,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -35750,7 +35264,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -36881,7 +36395,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -37378,7 +36892,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -37497,7 +37011,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -37881,7 +37395,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -38337,7 +37851,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -38557,7 +38071,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -38812,7 +38326,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -38837,7 +38351,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -38851,7 +38365,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -39011,7 +38525,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -39421,7 +38935,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -40553,7 +40067,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -41252,7 +40766,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -41709,7 +41223,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -41929,7 +41443,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -42164,7 +41678,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -42178,7 +41692,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -42338,7 +41852,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -42748,7 +42262,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -43879,7 +43393,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -44376,7 +43890,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -44495,7 +44009,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -44879,7 +44393,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -45335,7 +44849,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -45555,7 +45069,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -45810,7 +45324,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -45835,7 +45349,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -45849,7 +45363,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -46009,7 +45523,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -46419,7 +45933,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -47550,7 +47064,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -48047,7 +47561,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -48543,7 +48057,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -48999,7 +48513,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -49219,7 +48733,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -49492,7 +49006,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -49506,7 +49020,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -49666,7 +49180,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -50076,7 +49590,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -51207,7 +50721,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -51704,7 +51218,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52200,7 +51714,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -52656,7 +52170,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52876,7 +52390,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53149,7 +52663,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -53163,7 +52677,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -53323,7 +52837,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -53733,7 +53247,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -54864,7 +54378,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -55361,7 +54875,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -55480,7 +54994,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -55864,7 +55378,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -56320,7 +55834,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -56540,7 +56054,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -56795,7 +56309,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -56820,7 +56334,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -56834,7 +56348,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -56994,7 +56508,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -57404,7 +56918,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58535,7 +58049,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -59032,7 +58546,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -59151,7 +58665,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -59535,7 +59049,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -59991,7 +59505,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -60211,7 +59725,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -60466,7 +59980,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -60503,7 +60017,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -60517,7 +60031,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -60677,7 +60191,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -61087,7 +60601,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -62218,7 +61732,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -62715,7 +62229,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -63211,7 +62725,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -63667,7 +63181,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -63887,7 +63401,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -64160,7 +63674,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -64174,7 +63688,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -64334,7 +63848,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -64744,7 +64258,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -65875,7 +65389,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66136,7 +65650,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - *Attachment* is used if the observation result value is a binary file such as an image. If the observation result value is derived from the binary file (for example 'X' detected and here is the the proof in this image), the binary file may be directly represented using *DocumentReference* and referenced by `derivedFrom`. - For additional guidance, see the [Notes section](http://hl7.org/fhir/observation.html#notes) below."> - + @@ -66372,7 +65886,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66868,7 +66382,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -67324,7 +66838,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -67544,7 +67058,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -67819,7 +67333,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -67833,7 +67347,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -67993,7 +67507,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -68403,7 +67917,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -69534,7 +69048,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -70262,7 +69776,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -70731,7 +70245,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -70951,7 +70465,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -71162,7 +70676,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -71827,7 +71341,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -71988,7 +71502,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -72303,7 +71817,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -72966,7 +72480,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -73127,7 +72641,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -73680,14 +73194,14 @@ The alternate way is to use the value element for actual observations and use th - + - + - + @@ -73726,53 +73240,7 @@ The alternate way is to use the value element for actual observations and use th - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -73782,8 +73250,8 @@ The alternate way is to use the value element for actual observations and use th - - + + @@ -73804,7 +73272,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -74187,7 +73655,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -74298,7 +73766,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -75270,14 +74738,14 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + - + @@ -75316,53 +74784,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -75372,8 +74794,8 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - + + @@ -75394,7 +74816,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -75776,7 +75198,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -75886,7 +75308,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -76811,7 +76233,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -76824,7 +76246,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -76948,7 +76370,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -77313,7 +76735,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -78089,7 +77511,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -78495,7 +77917,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -78508,7 +77930,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -78660,7 +78082,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -79070,7 +78492,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -79248,7 +78670,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -79740,7 +79162,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -80239,7 +79661,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -80389,7 +79811,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -80710,7 +80131,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -81255,7 +80676,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -81268,7 +80689,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -81420,7 +80841,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -81830,7 +81251,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -82008,7 +81429,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -82732,7 +82153,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -83182,7 +82603,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -83672,7 +83093,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -83685,7 +83106,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -83837,7 +83258,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -84247,7 +83668,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -84425,7 +83846,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -85149,7 +84570,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -85264,7 +84685,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -85621,7 +85041,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86118,7 +85538,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -86131,7 +85551,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -86283,7 +85703,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -86693,7 +86113,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86793,7 +86213,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86864,7 +86284,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -87588,7 +87008,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -87738,7 +87158,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -88059,7 +87478,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88443,7 +87862,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -88557,7 +87976,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -88570,7 +87989,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -88694,7 +88113,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -88909,7 +88328,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -88952,7 +88370,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -88987,7 +88404,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -89022,7 +88438,6 @@ The alternate way is to use the value element for actual observations and use th - @@ -89208,7 +88623,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -89780,7 +89195,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90130,7 +89545,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90143,7 +89558,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90267,7 +89682,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90482,7 +89897,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -90517,7 +89931,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -90552,7 +89965,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -90587,7 +89999,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -90773,7 +90184,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -91345,7 +90756,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -91687,7 +91098,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -91702,7 +91113,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -91829,7 +91240,7 @@ The base Composition is a general resource for compositions or documents about a - + @@ -92045,7 +91456,6 @@ The base Composition is a general resource for compositions or documents about a - @@ -92189,7 +91599,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -92657,7 +92067,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -92784,7 +92194,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -92964,7 +92374,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -93091,7 +92501,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -93200,7 +92610,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -93477,7 +92887,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -93798,7 +93208,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -94017,7 +93427,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -94030,7 +93440,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -94157,7 +93567,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -94372,7 +93782,6 @@ If the section has content (instead of sub-sections), the section.code does not - @@ -94516,7 +93925,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -94985,7 +94394,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -95112,7 +94521,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -95292,7 +94701,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -95419,7 +94828,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -95528,7 +94937,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -95807,7 +95216,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -96128,7 +95537,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -96409,14 +95818,14 @@ If the section has content (instead of sub-sections), the section.code does not - + - + - + @@ -96455,53 +95864,7 @@ If the section has content (instead of sub-sections), the section.code does not - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -96510,10 +95873,6 @@ If the section has content (instead of sub-sections), the section.code does not - - - - @@ -96533,7 +95892,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -96904,7 +96263,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97040,7 +96399,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97786,7 +97145,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -98112,7 +97471,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -98341,7 +97700,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -98579,7 +97938,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -98794,7 +98153,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -98921,7 +98280,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99040,7 +98399,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99191,7 +98550,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99301,7 +98660,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99427,7 +98786,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99526,7 +98885,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99559,7 +98918,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99592,7 +98951,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99625,7 +98984,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99658,7 +99017,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99764,7 +99123,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -100047,14 +99406,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -100093,53 +99452,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -100148,10 +99461,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -100171,7 +99480,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -100541,7 +99850,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -100676,7 +99985,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -101412,7 +100721,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -101738,7 +101047,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -101967,7 +101276,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102205,7 +101514,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102420,7 +101729,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -102547,7 +101856,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102666,7 +101975,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102817,7 +102126,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102927,7 +102236,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103053,7 +102362,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103152,7 +102461,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103185,7 +102494,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103218,7 +102527,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103251,7 +102560,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103284,7 +102593,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103390,7 +102699,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103600,14 +102909,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -103646,53 +102955,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -103701,10 +102964,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -103724,7 +102983,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103939,7 +103198,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -104130,7 +103388,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -104265,7 +103523,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -105001,7 +104259,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -105327,7 +104585,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -105556,7 +104814,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -105797,7 +105055,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106014,7 +105272,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -106141,7 +105399,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106260,7 +105518,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106411,7 +105669,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106523,7 +105781,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106649,7 +105907,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106749,7 +106007,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106783,7 +106041,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106816,7 +106074,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106849,7 +106107,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106882,7 +106140,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -106989,7 +106247,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107242,7 +106500,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107255,7 +106513,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107611,7 +106869,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107710,7 +106968,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -108146,7 +107404,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -108287,7 +107545,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -108861,7 +108119,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -109122,7 +108380,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -109164,7 +108422,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -109216,6 +108474,9 @@ This element should only be used on child elements of complex data elements."> + + + @@ -109459,6 +108720,9 @@ This element should only be used on child elements of complex data elements."> + + + @@ -109653,6 +108917,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -109967,6 +109234,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -110140,6 +109410,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -110194,6 +109467,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -110490,7 +109766,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -110925,7 +110201,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -111195,7 +110471,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -111369,7 +110645,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -111382,7 +110658,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -111510,7 +110786,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -111886,7 +111162,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -111932,7 +111208,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -112068,7 +111344,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -112250,7 +111526,7 @@ For example, an activity may be initiated by one user for other users or involve - + @@ -112831,7 +112107,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -113003,7 +112279,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -113122,7 +112398,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -113421,7 +112697,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -113910,7 +113186,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -114208,7 +113484,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -114221,7 +113497,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -114347,7 +113623,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -114970,7 +114246,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -115293,7 +114569,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -115419,7 +114695,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + diff --git a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-resources.xml b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-resources.xml index eed1d3da297..75fb10e8647 100644 --- a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-resources.xml +++ b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-resources.xml @@ -1,7 +1,7 @@ - + @@ -10,14 +10,14 @@ - + - + - + @@ -30,7 +30,7 @@ - + @@ -393,6 +393,12 @@ + + + + + + @@ -523,7 +529,7 @@ - + @@ -777,7 +783,7 @@ - + @@ -801,7 +807,7 @@ - + @@ -1867,7 +1873,7 @@ - + @@ -1875,6 +1881,12 @@ + + + + + + @@ -1882,10 +1894,10 @@ - - - - + + + + @@ -2743,7 +2755,7 @@ - + @@ -2773,7 +2785,7 @@ - + @@ -3859,15 +3871,9 @@ - - - - - - @@ -4173,6 +4179,7 @@ + @@ -4203,12 +4210,24 @@ + + + + + + + + + + + + @@ -4315,6 +4334,7 @@ + @@ -5379,8 +5399,6 @@ - - @@ -5652,12 +5670,12 @@ - + + - @@ -5986,7 +6004,7 @@ - + @@ -6010,7 +6028,7 @@ - + @@ -8182,7 +8200,7 @@ - + @@ -8332,10 +8350,8 @@ - - @@ -9463,6 +9479,12 @@ Requires the near-distance parameter to be provided also"> + + + + + + @@ -10576,6 +10598,8 @@ Requires the near-distance parameter to be provided also"> + + @@ -10587,6 +10611,18 @@ Requires the near-distance parameter to be provided also"> + + + + + + + + + + + + @@ -10599,6 +10635,12 @@ Requires the near-distance parameter to be provided also"> + + + + + + @@ -11098,6 +11140,18 @@ Requires the near-distance parameter to be provided also"> + + + + + + + + + + + + @@ -11443,19 +11497,14 @@ Requires the near-distance parameter to be provided also"> - - - - - @@ -11727,6 +11776,7 @@ Requires the near-distance parameter to be provided also"> + @@ -12115,6 +12165,7 @@ Requires the near-distance parameter to be provided also"> + @@ -13708,6 +13759,7 @@ Requires the near-distance parameter to be provided also"> + @@ -13867,17 +13919,14 @@ Requires the near-distance parameter to be provided also"> - - - @@ -13931,7 +13980,7 @@ Requires the near-distance parameter to be provided also"> - + @@ -13949,7 +13998,7 @@ Requires the near-distance parameter to be provided also"> - + @@ -14297,6 +14346,7 @@ Requires the near-distance parameter to be provided also"> + @@ -17686,6 +17736,84 @@ Requires the near-distance parameter to be provided also"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17956,6 +18084,168 @@ Requires the near-distance parameter to be provided also"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -18170,14 +18460,14 @@ Requires the near-distance parameter to be provided also"> - + - + - + @@ -18190,7 +18480,7 @@ Requires the near-distance parameter to be provided also"> - + @@ -18218,14 +18508,14 @@ Requires the near-distance parameter to be provided also"> - + - + - + @@ -18716,14 +19006,14 @@ Requires the near-distance parameter to be provided also"> - + - + - + @@ -19192,14 +19482,14 @@ Requires the near-distance parameter to be provided also"> - + - + - + @@ -19743,14 +20033,14 @@ Requires the near-distance parameter to be provided also"> - + - + - + @@ -20280,14 +20570,14 @@ Requires the near-distance parameter to be provided also"> - + - + - + @@ -20771,7 +21061,7 @@ Requires the near-distance parameter to be provided also"> - + @@ -20780,11 +21070,11 @@ Requires the near-distance parameter to be provided also"> - + - + @@ -20904,7 +21194,7 @@ Requires the near-distance parameter to be provided also"> - + @@ -20913,11 +21203,11 @@ Requires the near-distance parameter to be provided also"> - + - + @@ -20953,7 +21243,7 @@ Requires the near-distance parameter to be provided also"> - + @@ -20962,11 +21252,11 @@ Requires the near-distance parameter to be provided also"> - + - + @@ -21046,7 +21336,7 @@ If the capability statements can be successfully compared, then the return value - + @@ -21055,11 +21345,11 @@ If the capability statements can be successfully compared, then the return value - + - + @@ -21127,7 +21417,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21136,11 +21426,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21191,7 +21481,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21200,11 +21490,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21247,7 +21537,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21256,11 +21546,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21340,7 +21630,7 @@ If the capability statements can be successfully compared, then the return value - + @@ -21349,11 +21639,11 @@ If the capability statements can be successfully compared, then the return value - + - + @@ -21421,7 +21711,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21430,11 +21720,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21485,7 +21775,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21494,11 +21784,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21541,7 +21831,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21550,11 +21840,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21608,7 +21898,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21617,11 +21907,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21664,7 +21954,7 @@ If the capability statements match by these rules, then the return value is a 20 - + @@ -21673,11 +21963,11 @@ If the capability statements match by these rules, then the return value is a 20 - + - + @@ -21938,7 +22228,7 @@ The find-matches operation is still preliminary. The interface can be expected t - + @@ -21947,14 +22237,14 @@ The find-matches operation is still preliminary. The interface can be expected t - + - + - + @@ -22199,7 +22489,7 @@ When invoking this operation, a client SHALL provide both a system and a code, e - + @@ -22208,14 +22498,14 @@ When invoking this operation, a client SHALL provide both a system and a code, e - + - + - + @@ -22292,7 +22582,7 @@ When invoking this operation, a client SHALL provide both a and codes, either as - + @@ -22304,7 +22594,7 @@ When invoking this operation, a client SHALL provide both a and codes, either as - + @@ -22313,14 +22603,14 @@ When invoking this operation, a client SHALL provide both a and codes, either as - + - + - + @@ -22455,7 +22745,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -22464,11 +22754,11 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + - + @@ -22526,7 +22816,7 @@ Notes: - + @@ -22535,11 +22825,11 @@ Notes: - + - + @@ -22598,7 +22888,7 @@ Notes: - + @@ -22607,11 +22897,11 @@ Notes: - + - + @@ -22831,7 +23121,7 @@ The operation returns a set of parameters including a 'result' for whether there - + @@ -22840,11 +23130,11 @@ The operation returns a set of parameters including a 'result' for whether there - + - + @@ -22887,7 +23177,7 @@ The operation returns a set of parameters including a 'result' for whether there - + @@ -22896,11 +23186,11 @@ The operation returns a set of parameters including a 'result' for whether there - + - + @@ -22971,7 +23261,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -22980,11 +23270,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23071,7 +23361,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23080,11 +23370,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23128,7 +23418,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23137,11 +23427,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23185,7 +23475,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23194,11 +23484,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23267,7 +23557,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23276,11 +23566,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23375,7 +23665,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23384,11 +23674,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23440,7 +23730,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23449,11 +23739,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23548,7 +23838,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23557,11 +23847,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23605,7 +23895,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23614,11 +23904,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23679,7 +23969,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -23688,11 +23978,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -23791,7 +24081,7 @@ The following rules apply when using the $process-message operation asynchronous - + @@ -23800,11 +24090,11 @@ The following rules apply when using the $process-message operation asynchronous - + - + @@ -23848,7 +24138,7 @@ If the server wishes, it can also look through all code systems and value sets i - + @@ -23868,7 +24158,7 @@ If the server wishes, it can also look through all code systems and value sets i - + @@ -23877,11 +24167,11 @@ If the server wishes, it can also look through all code systems and value sets i - + - + @@ -23960,7 +24250,7 @@ The set of returned observations should represent distinct real world observatio - + @@ -23969,11 +24259,11 @@ The set of returned observations should represent distinct real world observatio - + - + @@ -24110,7 +24400,7 @@ The set of returned observations should represent distinct real world observatio - + @@ -24119,11 +24409,11 @@ The set of returned observations should represent distinct real world observatio - + - + @@ -24212,7 +24502,7 @@ The _since parameter is provided to support periodic queries to get additional i - + @@ -24221,11 +24511,11 @@ The _since parameter is provided to support periodic queries to get additional i - + - + @@ -24287,7 +24577,7 @@ To ask an MPI to match a patient, clients use the "$match" operation, - + @@ -24296,11 +24586,11 @@ To ask an MPI to match a patient, clients use the "$match" operation, - + - + @@ -24420,7 +24710,7 @@ To ask an MPI to match a patient, clients use the "$match" operation, - + @@ -24429,11 +24719,11 @@ To ask an MPI to match a patient, clients use the "$match" operation, - + - + @@ -24469,7 +24759,7 @@ To ask an MPI to match a patient, clients use the "$match" operation, - + @@ -24478,11 +24768,11 @@ To ask an MPI to match a patient, clients use the "$match" operation, - + - + @@ -24540,7 +24830,7 @@ Implementers are encouraged to provide feedback to HL7 about their use of this o - + @@ -24549,11 +24839,11 @@ Implementers are encouraged to provide feedback to HL7 about their use of this o - + - + @@ -24596,7 +24886,7 @@ Implementers are encouraged to provide feedback to HL7 about their use of this o - + @@ -24605,11 +24895,11 @@ Implementers are encouraged to provide feedback to HL7 about their use of this o - + - + @@ -24653,7 +24943,7 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + @@ -24662,11 +24952,11 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + - + @@ -24706,7 +24996,7 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + @@ -24715,11 +25005,11 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + - + @@ -24762,7 +25052,7 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + @@ -24771,11 +25061,11 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + - + @@ -24818,7 +25108,7 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + @@ -24827,14 +25117,14 @@ For the purposes of graphQL compatibility, this operation can also be invoked us - + - + - + @@ -24885,7 +25175,7 @@ Future versions of this specifcation may add additional validation parameters. A - + @@ -24913,7 +25203,7 @@ Future versions of this specifcation may add additional validation parameters. A - + @@ -24922,11 +25212,11 @@ Future versions of this specifcation may add additional validation parameters. A - + - + @@ -25028,7 +25318,7 @@ Future versions of this specifcation may add additional validation parameters. A - + @@ -25037,11 +25327,11 @@ Future versions of this specifcation may add additional validation parameters. A - + - + @@ -25116,7 +25406,7 @@ This operation is intended to enable auto-generation of simple interfaces for ar - + @@ -25125,11 +25415,11 @@ This operation is intended to enable auto-generation of simple interfaces for ar - + - + @@ -25183,7 +25473,7 @@ If the operation is not called at the instance level, either *definition* or *ur - + @@ -25192,11 +25482,11 @@ If the operation is not called at the instance level, either *definition* or *ur - + - + @@ -25248,7 +25538,7 @@ If the operation is not called at the instance level, either *definition* or *ur - + @@ -25257,14 +25547,14 @@ If the operation is not called at the instance level, either *definition* or *ur - + - + - + @@ -25500,7 +25790,7 @@ Text Search engines such as Lucene or Solr, long with their considerable functio - + @@ -25509,14 +25799,14 @@ Text Search engines such as Lucene or Solr, long with their considerable functio - + - + - + @@ -25676,7 +25966,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -25691,10 +25981,10 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + - + @@ -25709,7 +25999,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -25718,6 +26008,8 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica + + @@ -25732,6 +26024,10 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica + + + + @@ -25752,7 +26048,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -25874,7 +26170,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -25940,7 +26236,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -25958,10 +26254,10 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + - + @@ -25976,7 +26272,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -26078,7 +26374,7 @@ Note that. 'abstract' is a property defined by many HL7 code systems that indica - + @@ -26385,7 +26681,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -26602,7 +26898,7 @@ Where the order is important, a local/jurisdictional extension may be defined to - + @@ -26867,7 +27163,7 @@ A coverage may only be responsible for specific types of charges, and the sequen - + @@ -27132,7 +27428,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -27413,7 +27709,7 @@ A coverage may only be responsible for specific types of charges, and the sequen - + @@ -27431,10 +27727,10 @@ A coverage may only be responsible for specific types of charges, and the sequen - + - + @@ -27449,7 +27745,7 @@ A coverage may only be responsible for specific types of charges, and the sequen - + @@ -27473,11 +27769,7 @@ A coverage may only be responsible for specific types of charges, and the sequen - - - - - + @@ -27492,64 +27784,14 @@ A coverage may only be responsible for specific types of charges, and the sequen - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -27574,7 +27816,7 @@ A coverage may only be responsible for specific types of charges, and the sequen - + @@ -27956,7 +28198,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -28066,7 +28308,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -28857,7 +29099,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -28960,7 +29202,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -28993,7 +29235,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -29145,7 +29387,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -29271,7 +29513,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29613,7 +29855,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29778,7 +30020,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29886,7 +30128,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -29945,7 +30187,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -30415,7 +30657,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -30474,7 +30716,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -30492,7 +30734,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -30586,7 +30828,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -30803,7 +31045,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -30821,10 +31063,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -30839,7 +31081,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -30931,7 +31173,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -31392,7 +31634,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -31618,7 +31860,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -31904,7 +32146,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -32065,7 +32307,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -32539,7 +32781,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -32557,10 +32799,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -32575,7 +32817,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -32681,7 +32923,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -32986,7 +33228,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -33028,7 +33270,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -33037,7 +33279,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -33063,7 +33305,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -33159,9 +33401,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - + + + @@ -33491,7 +33733,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -33709,7 +33951,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -33881,7 +34123,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34112,7 +34354,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34291,7 +34533,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34468,7 +34710,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34644,7 +34886,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34859,7 +35101,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34888,7 +35130,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34897,7 +35139,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34909,7 +35151,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -34977,9 +35219,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - + + + @@ -35482,7 +35724,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -35500,10 +35742,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -35519,7 +35761,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -35642,7 +35884,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -35958,7 +36200,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -36003,7 +36245,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -36047,7 +36289,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -36097,7 +36339,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -36147,7 +36389,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -36554,7 +36796,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -36828,7 +37070,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -36981,7 +37223,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37013,7 +37255,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37043,7 +37285,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37079,7 +37321,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37115,7 +37357,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37463,7 +37705,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37518,7 +37760,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37536,10 +37778,10 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + - + @@ -37554,7 +37796,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -37698,7 +37940,7 @@ The data type is CodeableConcept because clinicalStatus has some clinical judgme - + @@ -38019,7 +38261,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -38243,19 +38485,23 @@ This element is labeled as a modifier because the status contains the code enter - - - - + + + + - + - + + + + + @@ -38288,43 +38534,6 @@ This element is labeled as a modifier because the status contains the code enter - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -38822,7 +39031,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -39042,7 +39251,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -39083,7 +39292,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -39261,7 +39470,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -39415,14 +39624,18 @@ This element is labeled as a modifier because the status contains the code enter - - - - + + + + - + + + + + @@ -39446,28 +39659,6 @@ This element is labeled as a modifier because the status contains the code enter - - - - - - - - - - - - - - - - - - - - - - @@ -39854,7 +40045,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -39881,7 +40072,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -39945,7 +40136,7 @@ The duration (usually in minutes) could also be provided to indicate the length - + @@ -39963,10 +40154,10 @@ The duration (usually in minutes) could also be provided to indicate the length - + - + @@ -39981,7 +40172,7 @@ The duration (usually in minutes) could also be provided to indicate the length - + @@ -40111,7 +40302,7 @@ The duration (usually in minutes) could also be provided to indicate the length - + @@ -40633,7 +40824,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -40895,7 +41086,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -40943,7 +41134,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -40961,10 +41152,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -40979,7 +41170,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -41108,7 +41299,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -41481,7 +41672,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -41527,7 +41718,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -41662,7 +41853,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -41843,7 +42034,7 @@ For example, an activity may be initiated by one user for other users or involve - + @@ -42419,7 +42610,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -42589,7 +42780,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -42707,7 +42898,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -43002,7 +43193,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -43487,7 +43678,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -43773,7 +43964,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -43805,7 +43996,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -43897,7 +44088,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -44381,7 +44572,7 @@ For example, an activity may be initiated by one user for other users or involve - + @@ -44895,7 +45086,7 @@ For example, an activity may be initiated by one user for other users or involve - + @@ -44913,10 +45104,10 @@ For example, an activity may be initiated by one user for other users or involve - + - + @@ -44932,7 +45123,7 @@ For example, an activity may be initiated by one user for other users or involve - + @@ -45035,7 +45226,7 @@ For example, an activity may be initiated by one user for other users or involve - + @@ -45618,7 +45809,7 @@ This element is labeled as a modifier because it defines the meaning of the reso - + @@ -45639,10 +45830,10 @@ This element is labeled as a modifier because it defines the meaning of the reso - + - + @@ -45658,7 +45849,7 @@ This element is labeled as a modifier because it defines the meaning of the reso - + @@ -45712,7 +45903,7 @@ This element is labeled as a modifier because it defines the meaning of the reso - + @@ -45844,7 +46035,7 @@ This element is labeled as a modifier because it defines the meaning of the reso - + @@ -45949,7 +46140,7 @@ This element is labeled as a modifier because it defines the meaning of the reso - + @@ -45999,7 +46190,7 @@ This element is labeled as a modifier because it defines the meaning of the reso - + @@ -46017,10 +46208,10 @@ This element is labeled as a modifier because it defines the meaning of the reso - + - + @@ -46036,7 +46227,7 @@ This element is labeled as a modifier because it defines the meaning of the reso - + @@ -46143,7 +46334,7 @@ into another (possibly the same) biological entity."> - + @@ -46452,7 +46643,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -46517,7 +46708,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -46638,7 +46829,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -46856,7 +47047,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -47104,7 +47295,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -47293,7 +47484,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -47469,7 +47660,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -47550,7 +47741,7 @@ into another (possibly the same) biological entity."> - + @@ -47585,7 +47776,7 @@ into another (possibly the same) biological entity."> - + @@ -47808,7 +47999,7 @@ into another (possibly the same) biological entity."> - + @@ -47831,7 +48022,7 @@ into another (possibly the same) biological entity."> - + @@ -47849,10 +48040,10 @@ into another (possibly the same) biological entity."> - + - + @@ -47867,7 +48058,7 @@ into another (possibly the same) biological entity."> - + @@ -47982,7 +48173,7 @@ into another (possibly the same) biological entity."> - + @@ -48817,7 +49008,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -48838,10 +49029,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -48856,7 +49047,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -48991,7 +49182,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -49155,7 +49346,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -49278,7 +49469,7 @@ This specification defines some specific uses of Bundle.link for [searching](sea - + @@ -49479,7 +49670,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -49686,7 +49877,7 @@ Note that the fullUrl is not the same as the canonical URL - it's an absolute ur - + @@ -49813,7 +50004,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -49885,7 +50076,7 @@ See [Patient Match](patient-operation-match.html) for the EMPI search which rela - + @@ -50011,7 +50202,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -50181,7 +50372,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -50550,7 +50741,7 @@ This outcome is not used for error responses in batch/transaction, only for hint - + @@ -50729,7 +50920,7 @@ Note that the fullUrl is not the same as the canonical URL - it's an absolute ur - + @@ -50774,7 +50965,7 @@ See [Patient Match](patient-operation-match.html) for the EMPI search which rela - + @@ -50926,36 +51117,33 @@ This outcome is not used for error responses in batch/transaction, only for hint - + - + - + + + + - + - - - - - - - - - + + + - + @@ -50969,13 +51157,8 @@ This outcome is not used for error responses in batch/transaction, only for hint - - - - - - - + + @@ -50991,84 +51174,35 @@ This outcome is not used for error responses in batch/transaction, only for hint + + + + + - - - - - - - + + + - - - - - - - + + + + + + - - - + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -51121,6 +51255,1280 @@ This outcome is not used for error responses in batch/transaction, only for hint + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -51141,7 +52549,7 @@ This outcome is not used for error responses in batch/transaction, only for hint - + @@ -51472,7 +52880,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -51549,7 +52957,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -51907,7 +53315,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -52012,7 +53420,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -52226,7 +53634,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52435,7 +53843,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52472,7 +53880,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52509,7 +53917,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52587,7 +53995,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52713,7 +54121,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -52784,7 +54192,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53012,7 +54420,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53141,7 +54549,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53270,7 +54678,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53396,7 +54804,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53459,7 +54867,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53583,7 +54991,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53649,7 +55057,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53685,7 +55093,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53787,7 +55195,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -53970,7 +55378,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -54041,7 +55449,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -54258,7 +55666,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -54384,7 +55792,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -54532,7 +55940,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -54669,7 +56077,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -54915,7 +56323,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -55041,7 +56449,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -55114,7 +56522,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -55240,7 +56648,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -55304,6 +56712,13 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + @@ -55353,13 +56768,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - @@ -55421,7 +56829,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -55462,7 +56870,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -55677,7 +57085,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -55829,7 +57237,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -55852,7 +57260,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -55875,7 +57283,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -55926,7 +57334,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56032,7 +57440,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56103,7 +57511,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56136,7 +57544,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56200,7 +57608,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56236,7 +57644,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56257,7 +57665,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56341,7 +57749,7 @@ A capability statement that imports another CapabilityStatement automatically in - + @@ -56431,7 +57839,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -56579,7 +57987,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -56625,7 +58033,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -56661,7 +58069,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -56679,10 +58087,10 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + - + @@ -56697,7 +58105,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -56721,11 +58129,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - - - - - + @@ -56741,7 +58145,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -56782,57 +58186,11 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -56854,7 +58212,7 @@ If an operation that is listed in multiple CapabilityStatement.rest.resource.ope - + @@ -57185,7 +58543,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -57262,7 +58620,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -57617,7 +58975,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -57722,7 +59080,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -57936,7 +59294,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58145,7 +59503,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58182,7 +59540,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58219,7 +59577,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58297,7 +59655,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58423,7 +59781,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58499,7 +59857,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58628,7 +59986,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58757,7 +60115,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58883,7 +60241,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -58953,7 +60311,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -59136,7 +60494,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -59207,7 +60565,7 @@ If an operation that is listed in multiple CapabilityStatement2.rest.resource.op - + @@ -59424,7 +60782,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -59550,7 +60908,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -59662,6 +61020,13 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + @@ -59690,13 +61055,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - @@ -59765,7 +61123,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -59806,7 +61164,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -60018,7 +61376,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -60170,7 +61528,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -60193,7 +61551,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -60216,7 +61574,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -60267,7 +61625,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -60318,7 +61676,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -60389,7 +61747,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -60456,7 +61814,7 @@ A capability statement that imports another CapabilityStatement2 automatically i - + @@ -60546,7 +61904,7 @@ If an operation that is listed in multiple CapabilityStatement2.rest.resource.op - + @@ -60600,7 +61958,7 @@ If an operation that is listed in multiple CapabilityStatement2.rest.resource.op - + @@ -60618,10 +61976,10 @@ If an operation that is listed in multiple CapabilityStatement2.rest.resource.op - + - + @@ -60636,7 +61994,7 @@ If an operation that is listed in multiple CapabilityStatement2.rest.resource.op - + @@ -60751,7 +62109,7 @@ If an operation that is listed in multiple CapabilityStatement2.rest.resource.op - + @@ -61244,7 +62602,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -61297,7 +62655,7 @@ This element is expected to be immutable. E.g. A "proposal" instance s - + @@ -61680,21 +63038,22 @@ This element is expected to be immutable. E.g. A "proposal" instance s - - + + - + - + - + + @@ -61731,50 +63090,6 @@ This element is expected to be immutable. E.g. A "proposal" instance s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -61900,7 +63215,7 @@ NOTE: This is a list of contained Request-Event tuples!}"> - + @@ -61996,20 +63311,22 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + + + + + + - + - + + @@ -62029,34 +63346,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -62193,7 +63482,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -62320,7 +63609,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -62448,20 +63737,24 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - - + + - + - + + + + + @@ -62486,40 +63779,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -62585,7 +63844,7 @@ The unknown code is not to be used to convey other statuses. The unknown code s - + @@ -63208,7 +64467,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -63248,7 +64507,7 @@ This element is expected to be immutable. E.g. A "proposal" instance s - + @@ -63489,16 +64748,17 @@ This element is expected to be immutable. E.g. A "proposal" instance s - - + + - + - + + @@ -63526,36 +64786,6 @@ This element is expected to be immutable. E.g. A "proposal" instance s - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -63621,15 +64851,17 @@ NOTE: This is a list of contained Request-Event tuples!}"> - - - - - + + + + + + - + + @@ -63639,19 +64871,6 @@ NOTE: This is a list of contained Request-Event tuples!}"> - - - - - - - - - - - - - @@ -63744,7 +64963,7 @@ NOTE: This is a list of contained Request-Event tuples!}"> - + @@ -63827,15 +65046,19 @@ NOTE: This is a list of contained Request-Event tuples!}"> - - + + - - + + - + + + + + @@ -63850,25 +65073,6 @@ NOTE: This is a list of contained Request-Event tuples!}"> - - - - - - - - - - - - - - - - - - - @@ -63905,7 +65109,7 @@ The unknown code is not to be used to convey other statuses. The unknown code s - + @@ -64202,7 +65406,7 @@ The unknown code is not to be used to convey other statuses. The unknown code s - + @@ -64220,10 +65424,10 @@ The unknown code is not to be used to convey other statuses. The unknown code s - + - + @@ -64238,7 +65442,7 @@ The unknown code is not to be used to convey other statuses. The unknown code s - + @@ -64352,7 +65556,7 @@ The unknown code is not to be used to convey other statuses. The unknown code s - + @@ -64661,7 +65865,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -64865,7 +66069,7 @@ Allows for an organization to designate a team such as the PICC line team."> - + @@ -65106,19 +66310,20 @@ Member is optional because some participants may be known only by their role, pa - - + + - + - + + @@ -65143,36 +66348,6 @@ Member is optional because some participants may be known only by their role, pa - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -65308,7 +66483,7 @@ Member is optional because some participants may be known only by their role, pa - + @@ -65514,14 +66689,15 @@ Member is optional because some participants may be known only by their role, pa - - + + - + + @@ -65536,21 +66712,6 @@ Member is optional because some participants may be known only by their role, pa - - - - - - - - - - - - - - - @@ -65595,7 +66756,7 @@ Member is optional because some participants may be known only by their role, pa - + @@ -65613,10 +66774,10 @@ Member is optional because some participants may be known only by their role, pa - + - + @@ -65631,7 +66792,7 @@ Member is optional because some participants may be known only by their role, pa - + @@ -65731,7 +66892,7 @@ Member is optional because some participants may be known only by their role, pa - + @@ -66065,7 +67226,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66103,7 +67264,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66242,7 +67403,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66368,7 +67529,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66686,7 +67847,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66711,7 +67872,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66793,7 +67954,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66925,7 +68086,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -66943,10 +68104,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -66961,7 +68122,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -67079,7 +68240,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -67472,7 +68633,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -67776,7 +68937,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -68647,7 +69808,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -69268,7 +70429,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -69286,10 +70447,10 @@ This element is labeled as a modifier because the status contains the code enter - + - + @@ -69304,7 +70465,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -69328,11 +70489,7 @@ This element is labeled as a modifier because the status contains the code enter - - - - - + @@ -69347,63 +70504,17 @@ This element is labeled as a modifier because the status contains the code enter - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -69425,7 +70536,7 @@ This element is labeled as a modifier because the status contains the code enter - + @@ -69953,7 +71064,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -70504,7 +71615,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -70733,7 +71844,7 @@ FHIRPath expressions can traverse into other resources linked from the ChargeIte - + @@ -70901,7 +72012,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -71027,7 +72138,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -71130,7 +72241,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -71316,7 +72427,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -71751,7 +72862,7 @@ FHIRPath expressions can traverse into other resources linked from the ChargeIte - + @@ -71810,7 +72921,7 @@ FHIRPath expressions can traverse into other resources linked from the ChargeIte - + @@ -71828,10 +72939,10 @@ FHIRPath expressions can traverse into other resources linked from the ChargeIte - + - + @@ -71847,7 +72958,7 @@ FHIRPath expressions can traverse into other resources linked from the ChargeIte - + @@ -71956,7 +73067,7 @@ FHIRPath expressions can traverse into other resources linked from the ChargeIte - + @@ -72266,7 +73377,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -72386,7 +73497,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -72720,7 +73831,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -73013,7 +74124,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -73285,7 +74396,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -73589,7 +74700,7 @@ Value codes"> - + @@ -73931,7 +75042,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -74240,7 +75351,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -74537,7 +75648,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -74873,7 +75984,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -75104,7 +76215,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -75864,7 +76975,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -76341,7 +77452,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -76854,7 +77965,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -76931,7 +78042,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -78611,7 +79722,7 @@ Value codes"> - + @@ -78629,10 +79740,10 @@ Value codes"> - + - + @@ -78647,7 +79758,7 @@ Value codes"> - + @@ -78753,7 +79864,7 @@ Value codes"> - + @@ -79062,7 +80173,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -79182,7 +80293,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -79388,7 +80499,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -79555,7 +80666,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -79747,7 +80858,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -80011,7 +81122,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -80226,7 +81337,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -80441,7 +81552,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -81123,7 +82234,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -81500,7 +82611,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -81903,7 +83014,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -82104,7 +83215,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -82521,7 +83632,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -82677,7 +83788,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -82824,7 +83935,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -83099,7 +84210,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -83360,7 +84471,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -83437,7 +84548,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -83558,7 +84669,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -84645,7 +85756,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -84853,7 +85964,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -84871,10 +85982,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -84889,7 +86000,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -85003,7 +86114,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -85316,7 +86427,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -85745,7 +86856,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -85841,19 +86952,22 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + + + @@ -85878,38 +86992,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -86115,7 +87197,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86356,14 +87438,17 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + + @@ -86378,23 +87463,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - @@ -86474,7 +87542,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86492,10 +87560,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -86510,7 +87578,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86601,7 +87669,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86898,7 +87966,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -86970,7 +88038,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -87023,7 +88091,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -87260,7 +88328,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -87453,7 +88521,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -87763,7 +88831,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -87899,7 +88967,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88192,7 +89260,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88399,7 +89467,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88438,7 +89506,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88774,7 +89842,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88795,10 +89863,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -88813,7 +89881,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88837,11 +89905,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -88856,7 +89920,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -88869,57 +89933,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -88941,7 +89959,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -89311,7 +90329,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -89388,7 +90406,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -89804,7 +90822,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -89892,7 +90910,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -89989,7 +91007,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -90165,7 +91183,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90236,7 +91254,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90437,7 +91455,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90484,7 +91502,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90697,7 +91715,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -90935,7 +91953,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -91138,7 +92156,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -91230,7 +92248,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -91271,7 +92289,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -91516,7 +92534,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -91562,7 +92580,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -91640,7 +92658,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -91717,7 +92735,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -91899,7 +92917,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -91917,10 +92935,10 @@ Most code systems occasionally refine the displays defined for concepts between - + - + @@ -91935,7 +92953,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -92040,7 +93058,7 @@ Most code systems occasionally refine the displays defined for concepts between - + @@ -92511,7 +93529,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -92632,7 +93650,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -92968,20 +93986,21 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + @@ -93014,44 +94033,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -93092,7 +94073,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -93398,7 +94379,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -93476,7 +94457,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -93679,15 +94660,16 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - - + + - + - + + @@ -93711,30 +94693,6 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - - - - - - - - - - - - - - - - - - - - - - - - @@ -93791,7 +94749,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -93809,10 +94767,10 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + - + @@ -93827,7 +94785,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -93932,7 +94890,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -94349,7 +95307,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -94473,7 +95431,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -94700,7 +95658,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -95036,20 +95994,21 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - - + + - + - + + @@ -95082,44 +96041,6 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -95272,7 +96193,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -95352,7 +96273,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -95631,15 +96552,16 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - - + + - + + @@ -95663,30 +96585,6 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - - - - - - - - - - - - - - - - - - - - - - - - @@ -95715,7 +96613,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -95733,10 +96631,10 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + - + @@ -95751,7 +96649,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -95780,11 +96678,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - - - - - + @@ -95800,63 +96694,17 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -95882,7 +96730,7 @@ When using contentCodeableConcept, the CodeableConcept is what is being communic - + @@ -96213,7 +97061,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -96260,7 +97108,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -96536,7 +97384,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -96605,7 +97453,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -96734,7 +97582,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -96798,7 +97646,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -96869,7 +97717,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -96894,7 +97742,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97056,7 +97904,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97101,7 +97949,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97136,7 +97984,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97154,10 +98002,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -97173,7 +98021,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97301,7 +98149,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -97624,7 +98472,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -98089,7 +98937,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -98216,7 +99064,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -98397,7 +99245,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -98524,7 +99372,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -98634,7 +99482,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -98912,7 +99760,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -99233,7 +100081,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -99484,7 +100332,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -99823,7 +100671,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -99946,7 +100794,7 @@ Some reporting work flows require that the original narrative of a final documen - + @@ -100257,7 +101105,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -100378,7 +101226,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -100396,10 +101244,10 @@ If the section has content (instead of sub-sections), the section.code does not - + - + @@ -100414,7 +101262,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -100438,11 +101286,7 @@ If the section has content (instead of sub-sections), the section.code does not - - - - - + @@ -100457,63 +101301,17 @@ If the section has content (instead of sub-sections), the section.code does not - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -100535,7 +101333,7 @@ If the section has content (instead of sub-sections), the section.code does not - + @@ -100905,7 +101703,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -100982,7 +101780,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -101409,7 +102207,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -101663,7 +102461,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -101886,7 +102684,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102068,7 +102866,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102140,7 +102938,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102417,7 +103215,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102543,7 +103341,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102632,7 +103430,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -102724,7 +103522,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -102765,7 +103563,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -103167,7 +103965,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -103285,7 +104083,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -103330,7 +104128,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -103348,10 +104146,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -103366,7 +104164,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -103525,7 +104323,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -103841,7 +104639,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -103900,7 +104698,7 @@ The data type is CodeableConcept because verificationStatus has some clinical ju - + @@ -104506,7 +105304,7 @@ OR < 272379006 |Event|"> - + @@ -104720,9 +105518,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -104770,7 +105568,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -105087,7 +105885,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -105133,7 +105931,7 @@ The data type is CodeableConcept because verificationStatus has some clinical ju - + @@ -105625,9 +106423,9 @@ OR < 272379006 |Event|"> - + - + @@ -105734,7 +106532,7 @@ OR < 272379006 |Event|"> - + @@ -105752,10 +106550,10 @@ OR < 272379006 |Event|"> - + - + @@ -105770,7 +106568,7 @@ OR < 272379006 |Event|"> - + @@ -105794,11 +106592,7 @@ OR < 272379006 |Event|"> - - - - - + @@ -105813,63 +106607,17 @@ OR < 272379006 |Event|"> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -105887,7 +106635,7 @@ OR < 272379006 |Event|"> - + @@ -106257,7 +107005,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -106359,7 +107107,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -106882,7 +107630,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -107084,7 +107832,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107286,7 +108034,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107412,7 +108160,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107542,7 +108290,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107668,7 +108416,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107737,7 +108485,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107893,7 +108641,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -107981,7 +108729,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -108032,7 +108780,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -108417,7 +109165,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -108487,7 +109235,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -108542,7 +109290,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -108560,10 +109308,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -108578,7 +109326,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -108728,7 +109476,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -109048,7 +109796,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -109258,7 +110006,7 @@ Note: Scope can be derived from category if going from V2 to FHIR."> - + @@ -109414,7 +110162,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -109644,7 +110392,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -109765,6 +110513,68 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -109795,13 +110605,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + + - + - + @@ -109860,7 +110671,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -109986,7 +110797,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -110063,7 +110874,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -110469,7 +111280,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -110595,7 +111406,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -110751,7 +111562,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -110892,7 +111703,7 @@ Note: Scope can be derived from category if going from V2 to FHIR."> - + @@ -111046,6 +111857,38 @@ Note: An implementation-specific requirement will be needed"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -111061,9 +111904,10 @@ Note: An implementation-specific requirement will be needed"> - + + - + @@ -111098,7 +111942,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -111314,7 +112158,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -111347,7 +112191,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -111365,10 +112209,10 @@ Note: An implementation-specific requirement will be needed"> - + - + @@ -111383,7 +112227,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -111492,7 +112336,7 @@ Note: An implementation-specific requirement will be needed"> - + @@ -111855,7 +112699,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -112547,7 +113391,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -112792,7 +113636,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -112871,7 +113715,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -113258,7 +114102,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -113525,7 +114369,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -113689,7 +114533,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -114045,7 +114889,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -114330,7 +115174,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -114631,7 +115475,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -115076,7 +115920,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -115646,7 +116490,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -115852,7 +116696,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -116385,19 +117229,25 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + + + + + + @@ -116418,62 +117268,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -116681,7 +117475,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -116944,7 +117738,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -117130,7 +117924,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -117316,7 +118110,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -117567,7 +118361,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -118010,7 +118804,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -119314,14 +120108,20 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + + + + + @@ -119332,32 +120132,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -119680,7 +120454,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -119698,10 +120472,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -119717,7 +120491,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -119842,7 +120616,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -120168,7 +120942,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -120629,7 +121403,7 @@ For selfpay it may provide multiple paying persons and/or organizations."> - + @@ -120944,7 +121718,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -121162,7 +121936,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -121463,7 +122237,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -122032,7 +122806,7 @@ For selfpay it may provide multiple paying persons and/or organizations."> - + @@ -122050,10 +122824,10 @@ For selfpay it may provide multiple paying persons and/or organizations."> - + - + @@ -122068,7 +122842,7 @@ For selfpay it may provide multiple paying persons and/or organizations."> - + @@ -122178,7 +122952,7 @@ For selfpay it may provide multiple paying persons and/or organizations."> - + @@ -122487,7 +123261,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -122571,7 +123345,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -122866,7 +123640,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -123087,7 +123861,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -123307,7 +124081,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -123699,7 +124473,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -123912,7 +124686,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -123967,7 +124741,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -124420,7 +125194,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -124438,10 +125212,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -124456,7 +125230,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -124566,7 +125340,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -124875,7 +125649,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -124917,7 +125691,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -125145,7 +125919,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -125253,7 +126027,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -125481,7 +126255,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -125949,7 +126723,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -126350,7 +127124,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -126535,7 +127309,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -126563,7 +127337,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -126705,7 +127479,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -127191,7 +127965,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -127209,10 +127983,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -127227,7 +128001,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -127349,7 +128123,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -127666,7 +128440,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -127758,7 +128532,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -127989,7 +128763,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -128263,7 +129037,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -128531,7 +129305,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -128595,7 +129369,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -128892,7 +129666,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -128910,10 +129684,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -128929,7 +129703,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -129043,7 +129817,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -129402,7 +130176,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -129717,7 +130491,7 @@ http://hl7.org/fhir/NamingSystem/iccbba-other"> - + @@ -129756,7 +130530,7 @@ http://hl7.org/fhir/NamingSystem/iccbba-other"> - + @@ -130073,7 +130847,7 @@ http://hl7.org/fhir/NamingSystem/iccbba-other"> - + @@ -130226,7 +131000,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -130377,7 +131151,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -130568,7 +131342,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -130784,7 +131558,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -131422,7 +132196,7 @@ http://hl7.org/fhir/NamingSystem/iccbba-other"> - + @@ -131448,7 +132222,7 @@ http://hl7.org/fhir/NamingSystem/iccbba-other"> - + @@ -131657,7 +132431,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -131994,7 +132768,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -132012,10 +132786,10 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + - + @@ -132030,7 +132804,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -132127,7 +132901,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -132438,7 +133212,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -132686,7 +133460,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -132839,7 +133613,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -132956,7 +133730,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -133279,7 +134053,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -133465,7 +134239,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -133883,7 +134657,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -134177,7 +134951,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -134540,7 +135314,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -134558,10 +135332,10 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + - + @@ -134576,7 +135350,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -134673,7 +135447,7 @@ UDILabelName | UserFriendlyName | PatientReportedName | ManufactureDeviceName | - + @@ -135099,7 +135873,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135132,7 +135906,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135165,7 +135939,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135237,7 +136011,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135363,7 +136137,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135396,7 +136170,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135534,7 +136308,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135553,7 +136327,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135572,7 +136346,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135617,7 +136391,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135636,7 +136410,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135660,7 +136434,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135678,10 +136452,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -135696,7 +136470,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -135819,7 +136593,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -136333,7 +137107,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -136387,7 +137161,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -136437,7 +137211,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -136569,7 +137343,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -137102,19 +137876,23 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - + + + - + - + + + + + @@ -137155,51 +137933,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -137554,7 +138287,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -137595,7 +138328,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -137631,7 +138364,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -138028,14 +138761,18 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - + + + - + + + + + @@ -138067,37 +138804,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -138206,7 +138912,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -138224,10 +138930,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -138242,7 +138948,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -138361,7 +139067,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -138712,7 +139418,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -138953,19 +139659,23 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + + + + @@ -138985,55 +139695,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + @@ -139195,7 +139864,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -139352,14 +140021,18 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + + + @@ -139370,41 +140043,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + @@ -139462,7 +140108,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -139480,10 +140126,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -139499,7 +140145,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -139624,7 +140270,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -139989,7 +140635,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -140562,7 +141208,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -140939,7 +141585,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -141434,7 +142080,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -141452,10 +142098,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -141470,7 +142116,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -141589,7 +142235,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -141952,7 +142598,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -142356,7 +143002,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -142602,7 +143248,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -142894,7 +143540,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -142912,10 +143558,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -142930,7 +143576,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -143068,7 +143714,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -143447,7 +144093,7 @@ This element is labeled as a modifier because the status contains the codes that - + @@ -143501,7 +144147,7 @@ This element is labeled as a modifier because the status contains the codes that - + @@ -143953,7 +144599,7 @@ The typeCode should be mapped from the ClinicalDocument/code element to a set of - + @@ -144080,7 +144726,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -144281,7 +144927,7 @@ In the HL7 Healthcare Privacy and Security Classification (HCS) there are code s - + @@ -144519,7 +145165,7 @@ Composition.date"> - + @@ -145092,7 +145738,7 @@ This element is labeled as a modifier because the status contains the codes that - + @@ -145132,7 +145778,7 @@ This element is labeled as a modifier because the status contains the codes that - + @@ -145472,7 +146118,7 @@ The typeCode should be mapped from the ClinicalDocument/code element to a set of - + @@ -145933,7 +146579,7 @@ serviceEvent/effectiveTime/high/ - + @@ -145948,10 +146594,10 @@ serviceEvent/effectiveTime/high/ - + - + @@ -145966,7 +146612,7 @@ serviceEvent/effectiveTime/high/ - + @@ -146052,7 +146698,7 @@ serviceEvent/effectiveTime/high/ - + @@ -146466,7 +147112,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -146484,10 +147130,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -146502,7 +147148,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -146617,7 +147263,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -146932,7 +147578,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -146999,7 +147645,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -147125,7 +147771,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -147253,7 +147899,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -147766,7 +148412,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -148103,22 +148749,26 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + - + + + + + @@ -148140,55 +148790,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -148250,7 +148852,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -148538,7 +149140,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -149026,7 +149628,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -149195,7 +149797,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -149407,7 +150009,7 @@ There may be many levels in the hierachy, and this may only pic specific levels - + @@ -149459,7 +150061,7 @@ There may be many levels in the hierachy, and this may only pic specific levels - + @@ -149939,17 +150541,21 @@ There may be many levels in the hierachy, and this may only pic specific levels - - - - + + + + - + + + + + @@ -149962,41 +150568,7 @@ There may be many levels in the hierachy, and this may only pic specific levels - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -150402,7 +150974,7 @@ There may be many levels in the hierachy, and this may only pic specific levels - + @@ -150500,7 +151072,7 @@ There may be many levels in the hierachy, and this may only pic specific levels - + @@ -150518,10 +151090,10 @@ There may be many levels in the hierachy, and this may only pic specific levels - + - + @@ -150536,7 +151108,7 @@ There may be many levels in the hierachy, and this may only pic specific levels - + @@ -150636,7 +151208,7 @@ There may be many levels in the hierachy, and this may only pic specific levels - + @@ -150943,7 +151515,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -151192,7 +151764,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -151312,7 +151884,7 @@ and not "https://pacs.hospital.org/wado-rs/studies/1.2.250.1.59.40211.12345 - + @@ -151462,7 +152034,7 @@ and not "https://pacs.hospital.org/wado-rs/studies/1.2.250.1.59.40211.12345 - + @@ -151513,7 +152085,7 @@ and not "https://pacs.hospital.org/wado-rs/studies/1.2.250.1.59.40211.12345 - + @@ -151531,10 +152103,10 @@ and not "https://pacs.hospital.org/wado-rs/studies/1.2.250.1.59.40211.12345 - + - + @@ -151549,7 +152121,7 @@ and not "https://pacs.hospital.org/wado-rs/studies/1.2.250.1.59.40211.12345 - + @@ -151659,7 +152231,7 @@ and not "https://pacs.hospital.org/wado-rs/studies/1.2.250.1.59.40211.12345 - + @@ -151962,7 +152534,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -152183,7 +152755,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -152293,7 +152865,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -152311,10 +152883,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -152329,7 +152901,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -152439,7 +153011,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -152742,7 +153314,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -152816,7 +153388,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -152989,7 +153561,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153033,7 +153605,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153110,7 +153682,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153128,10 +153700,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -153146,7 +153718,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153256,7 +153828,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153563,7 +154135,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153614,7 +154186,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153740,7 +154312,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -153853,7 +154425,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -154319,7 +154891,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -154355,7 +154927,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -154591,7 +155163,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -154609,10 +155181,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -154627,7 +155199,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -154651,11 +155223,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -154670,53 +155238,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -154724,10 +155246,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -154748,7 +155266,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -155118,7 +155636,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -155220,7 +155738,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -155920,7 +156438,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -156012,7 +156530,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -156063,7 +156581,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -156459,7 +156977,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -156477,10 +156995,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -156495,7 +157013,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -156519,11 +157037,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - - - - + @@ -156538,53 +157052,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -156593,8 +157061,8 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - + + @@ -156612,7 +157080,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -157027,7 +157495,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -157038,37 +157506,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -157104,6 +157541,37 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -157343,7 +157811,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -157614,7 +158082,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -158034,7 +158502,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -158253,7 +158721,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -158474,7 +158942,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -158585,7 +159053,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -158596,23 +159064,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - @@ -158634,6 +159085,23 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + @@ -159068,7 +159536,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -159086,10 +159554,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -159105,7 +159573,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -159129,11 +159597,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -159149,53 +159613,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -159203,10 +159621,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -159227,7 +159641,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -159597,7 +160011,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -159725,7 +160139,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -160306,7 +160720,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -160375,7 +160789,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -160741,7 +161155,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -160754,7 +161168,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -160846,7 +161260,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -160909,7 +161323,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -161228,7 +161642,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -161389,7 +161803,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -161402,7 +161816,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -161420,10 +161834,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -161438,7 +161852,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -161462,11 +161876,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - - - - + @@ -161481,53 +161891,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -161536,8 +161900,8 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - + + @@ -161555,7 +161919,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -161925,7 +162289,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -161972,7 +162336,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -162190,43 +162554,6 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -162265,6 +162592,43 @@ In some cases, the resource can no longer be found at the stated url, but the ur + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -162305,7 +162669,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -162457,7 +162821,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -162552,7 +162916,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -162703,7 +163067,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -162796,7 +163160,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -162982,7 +163346,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -163168,7 +163532,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -163404,7 +163768,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -163588,7 +163952,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -163970,7 +164334,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -164174,7 +164538,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -164262,7 +164626,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -164287,7 +164651,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -164421,28 +164785,6 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - - - - - - - - - - - - - - - - - - - - - @@ -164466,6 +164808,28 @@ In some cases, the resource can no longer be found at the stated url, but the ur + + + + + + + + + + + + + + + + + + + + + + @@ -164502,7 +164866,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -164562,7 +164926,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -164889,7 +165253,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -164907,10 +165271,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -164925,7 +165289,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -165036,7 +165400,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -165345,7 +165709,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -165469,7 +165833,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -165846,7 +166210,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -166132,7 +166496,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -166454,7 +166818,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -166581,7 +166945,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -166877,7 +167241,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -167216,7 +167580,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -167525,7 +167889,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -167847,7 +168211,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -168068,7 +168432,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -168299,7 +168663,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -169080,7 +169444,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -169343,7 +169707,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -169868,7 +170232,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -170397,7 +170761,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -171061,7 +171425,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -171432,7 +171796,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -171829,7 +172193,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -172033,7 +172397,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -172412,7 +172776,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -172568,7 +172932,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -172708,7 +173072,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -173064,7 +173428,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -173309,7 +173673,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -173390,7 +173754,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -173814,7 +174178,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -175998,7 +176362,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -176249,7 +176613,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -176267,10 +176631,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -176285,7 +176649,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -176417,7 +176781,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -176802,7 +177166,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -177177,20 +177541,26 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + + + + + + @@ -177212,7 +177582,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -177223,49 +177593,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -177343,7 +177670,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -177646,7 +177973,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -178018,7 +178345,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -178252,15 +178579,21 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + + + + + @@ -178273,7 +178606,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -178284,35 +178617,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -178535,7 +178839,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -178553,10 +178857,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -178571,7 +178875,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -178674,7 +178978,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -178983,7 +179287,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -179278,7 +179582,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -179443,7 +179747,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -179461,10 +179765,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -179479,7 +179783,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -179589,7 +179893,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -179899,7 +180203,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -180242,7 +180546,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -180623,21 +180927,22 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + @@ -180658,34 +180963,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -180744,7 +181021,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -181128,16 +181405,17 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + @@ -181148,19 +181426,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - @@ -181171,7 +181436,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -181189,10 +181454,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -181207,7 +181472,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -181231,11 +181496,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -181250,53 +181511,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -181305,8 +181520,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -181328,7 +181543,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -181659,7 +181874,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -181706,7 +181921,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -182025,7 +182240,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -182095,7 +182310,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -182357,7 +182572,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -182486,7 +182701,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -182581,7 +182796,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -182708,7 +182923,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -182741,7 +182956,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -182774,7 +182989,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -182859,7 +183074,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -182926,7 +183141,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -182951,7 +183166,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183142,7 +183357,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183246,7 +183461,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183297,7 +183512,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183315,7 +183530,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183333,7 +183548,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183374,7 +183589,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183392,10 +183607,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -183410,7 +183625,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183527,7 +183742,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -183878,7 +184093,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -184106,7 +184321,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -184391,7 +184606,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -184665,7 +184880,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -184943,7 +185158,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -184961,10 +185176,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -184980,7 +185195,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -185085,7 +185300,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -185456,7 +185671,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -185608,52 +185823,19 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -185671,7 +185853,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -185898,7 +186080,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -185990,32 +186172,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - - - - - - - - - - - - - - - - - - - + @@ -186023,7 +186187,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -186098,7 +186262,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -186116,10 +186280,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -186134,7 +186298,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -186243,7 +186407,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -187005,7 +187169,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -187393,7 +187557,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -187519,7 +187683,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -187659,7 +187823,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -188352,7 +188516,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -188484,7 +188648,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -188502,10 +188666,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -188520,7 +188684,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -188643,7 +188807,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -188962,7 +189126,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -189439,7 +189603,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -189631,19 +189795,23 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + - + + + + + @@ -189665,7 +189833,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -189680,51 +189848,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -189836,7 +189959,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -190362,7 +190485,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -190585,7 +190708,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -190906,7 +191029,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -191281,14 +191404,18 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + + + + + @@ -191301,7 +191428,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -191316,37 +191443,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -191835,7 +191931,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -191853,10 +191949,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -191871,7 +191967,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -191994,7 +192090,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -192309,7 +192405,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -193015,7 +193111,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -193230,19 +193326,22 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + + + @@ -193264,49 +193363,13 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -193431,7 +193494,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -193782,7 +193845,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -194022,7 +194085,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -194346,7 +194409,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -194880,14 +194943,17 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + + @@ -194899,34 +194965,13 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - - - - - - - - - - - - - - - - - - - - - @@ -195294,7 +195339,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -195312,10 +195357,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -195330,7 +195375,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -195444,7 +195489,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -195750,7 +195795,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -196184,7 +196229,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -196414,7 +196459,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -196432,10 +196477,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -196450,7 +196495,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -196568,7 +196613,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -197016,7 +197061,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -197367,7 +197412,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -198225,7 +198270,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -198243,10 +198288,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -198262,7 +198307,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -198286,11 +198331,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -198305,53 +198346,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -198367,8 +198362,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -198390,7 +198385,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -198725,7 +198720,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -198802,7 +198797,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -199142,13 +199137,13 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -199179,7 +199174,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -199222,7 +199217,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -199437,7 +199432,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -199567,7 +199562,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -199644,7 +199639,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -199781,7 +199776,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -199967,7 +199962,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -200124,7 +200119,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -200280,7 +200275,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -200461,14 +200456,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -200491,7 +200486,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + + @@ -200528,7 +200524,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -200626,8 +200622,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -200714,7 +200710,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -200925,7 +200921,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -201089,7 +201085,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -201312,7 +201308,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -201548,7 +201544,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -201626,7 +201622,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -201667,7 +201663,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -201865,13 +201861,13 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -201888,7 +201884,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -201970,7 +201966,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -202075,7 +202071,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -202181,14 +202177,14 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -202196,7 +202192,8 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + + @@ -202205,8 +202202,8 @@ In some cases, the resource can no longer be found at the stated url, but the ur - - + + @@ -202417,7 +202414,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -202435,10 +202432,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -202453,7 +202450,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -202544,7 +202541,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -202927,7 +202924,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -203143,7 +203140,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -203431,7 +203428,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -203697,7 +203694,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -204147,7 +204144,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -204165,10 +204162,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -204183,7 +204180,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -204286,7 +204283,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -204598,7 +204595,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -204864,7 +204861,7 @@ For searching knowing previous names that the product/plan was known by can be v - + @@ -205186,7 +205183,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -205377,7 +205374,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -205563,7 +205560,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -205751,7 +205748,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -205998,7 +205995,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -206234,7 +206231,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -206398,7 +206395,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -206559,7 +206556,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -206710,7 +206707,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -206822,7 +206819,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -207342,7 +207339,7 @@ For searching knowing previous names that the product/plan was known by can be v - + @@ -207375,7 +207372,7 @@ For searching knowing previous names that the product/plan was known by can be v - + @@ -207393,10 +207390,10 @@ For searching knowing previous names that the product/plan was known by can be v - + - + @@ -207411,7 +207408,7 @@ For searching knowing previous names that the product/plan was known by can be v - + @@ -207525,7 +207522,7 @@ For searching knowing previous names that the product/plan was known by can be v - + @@ -207836,7 +207833,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -208094,7 +208091,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -208376,7 +208373,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -208582,7 +208579,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -208708,7 +208705,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -209033,7 +209030,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -209362,7 +209359,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -209526,7 +209523,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -209544,10 +209541,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -209562,7 +209559,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -209586,11 +209583,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -209605,53 +209598,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -209660,8 +209607,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -209683,7 +209630,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -210065,7 +210012,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -210175,7 +210122,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -211038,7 +210985,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -211142,7 +211089,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -211201,7 +211148,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -211715,7 +211662,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -211733,10 +211680,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -211751,7 +211698,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -211858,7 +211805,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -212206,7 +212153,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -212332,7 +212279,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -212446,7 +212393,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -212471,7 +212418,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -212489,10 +212436,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -212507,7 +212454,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -212631,7 +212578,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -212938,7 +212885,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -212982,7 +212929,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -213336,7 +213283,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -213679,7 +213626,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -213710,7 +213657,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -214028,7 +213975,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -214046,10 +213993,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -214064,7 +214011,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -214173,7 +214120,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -214484,7 +214431,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -214669,7 +214616,7 @@ For searching knowing previous names that the location was known by can be very - + @@ -214876,7 +214823,7 @@ For searching knowing previous names that the location was known by can be very - + @@ -215172,7 +215119,7 @@ Specific services within the location may have their own hours which could be sh - + @@ -215298,7 +215245,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -215511,7 +215458,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -215625,7 +215572,7 @@ For searching knowing previous names that the location was known by can be very - + @@ -215855,7 +215802,7 @@ Specific services within the location may have their own hours which could be sh - + @@ -215944,7 +215891,7 @@ Specific services within the location may have their own hours which could be sh - + @@ -215962,10 +215909,10 @@ Specific services within the location may have their own hours which could be sh - + - + @@ -215980,7 +215927,7 @@ Specific services within the location may have their own hours which could be sh - + @@ -216071,7 +216018,7 @@ Specific services within the location may have their own hours which could be sh - + @@ -216480,7 +216427,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -216765,7 +216712,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -216783,10 +216730,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -216801,7 +216748,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -216825,11 +216772,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -216844,53 +216787,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -216905,10 +216802,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -216929,7 +216822,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -217299,7 +217192,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -217401,7 +217294,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -218349,7 +218242,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -218444,7 +218337,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -218630,7 +218523,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -218850,7 +218743,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -219062,7 +218955,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -219274,7 +219167,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -219486,6 +219379,13 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + @@ -219493,13 +219393,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - @@ -219586,7 +219479,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -219637,7 +219530,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -220152,7 +220045,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -220408,7 +220301,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -220426,10 +220319,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -220444,7 +220337,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -220554,7 +220447,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -220859,7 +220752,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -220898,7 +220791,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -221094,7 +220987,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -221138,7 +221031,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -221299,7 +221192,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -221544,7 +221437,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -221708,7 +221601,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -221869,7 +221762,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -222058,7 +221951,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -222348,7 +222241,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -222373,7 +222266,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -222486,7 +222379,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -222728,7 +222621,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -222746,10 +222639,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -222764,7 +222657,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -222878,7 +222771,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -223236,7 +223129,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -223405,7 +223298,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -223577,7 +223470,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -223591,6 +223484,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + @@ -223670,7 +223566,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -223932,7 +223828,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -224074,7 +223970,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -224083,6 +223979,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + @@ -224176,7 +224075,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -224194,10 +224093,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -224212,7 +224111,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -224233,11 +224132,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - @@ -224331,7 +224225,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -224768,7 +224662,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -225015,7 +224909,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -225175,7 +225069,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -225350,19 +225244,22 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + - + + + + @@ -225384,7 +225281,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -225395,51 +225292,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -225597,7 +225449,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -226078,7 +225930,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -226252,7 +226104,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -226390,14 +226242,17 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + + + + @@ -226409,7 +226264,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -226420,36 +226275,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -226695,7 +226520,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -226713,10 +226538,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -226731,7 +226556,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -226857,7 +226682,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -227237,7 +227062,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -227482,7 +227307,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -227561,7 +227386,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -228115,6 +227940,36 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -228193,7 +228048,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -228609,7 +228464,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -228781,7 +228636,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -229094,6 +228949,21 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + @@ -229263,7 +229133,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -229281,10 +229151,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -229299,7 +229169,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -229405,7 +229275,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -229755,7 +229625,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -229946,7 +229816,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -230184,7 +230054,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -230371,7 +230241,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -230538,20 +230408,26 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + + + + + @@ -230562,6 +230438,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + @@ -230700,7 +230584,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -230911,7 +230795,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -231097,7 +230981,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -231233,7 +231117,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -231448,7 +231332,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -231638,7 +231522,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -231824,7 +231708,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -232094,7 +231978,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -232328,7 +232212,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -232490,7 +232374,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -232701,7 +232585,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -232888,7 +232772,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -233114,7 +232998,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -233344,15 +233228,29 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + + + + + + + + + + + + + + + @@ -233863,7 +233761,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -233881,10 +233779,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -233899,7 +233797,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -234024,7 +233922,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -234344,7 +234242,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -234437,7 +234335,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -234528,7 +234426,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -235043,20 +234941,22 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + @@ -235094,51 +234994,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -235386,6 +235242,36 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -235468,7 +235354,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -235609,7 +235495,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -235938,14 +235824,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + @@ -236020,7 +235906,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -236390,7 +236276,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -236455,7 +236341,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -236517,7 +236403,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -236860,15 +236746,17 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + + + @@ -236896,36 +236784,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -237072,6 +236931,21 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + @@ -237252,10 +237126,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + @@ -237425,7 +237299,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -237443,10 +237317,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -237463,7 +237337,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -237579,7 +237453,7 @@ The primary difference between a medicationusage and a medicationadministration - + @@ -237967,7 +237841,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -238339,20 +238213,23 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + - + + + + @@ -238374,7 +238251,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -238385,47 +238262,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -238459,6 +238295,36 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -238628,7 +238494,7 @@ The primary difference between a medicationusage and a medicationadministration - + @@ -238871,15 +238737,18 @@ The primary difference between a medicationusage and a medicationadministration - - + + - + - + + + + @@ -238891,7 +238760,7 @@ The primary difference between a medicationusage and a medicationadministration - + @@ -238902,32 +238771,6 @@ The primary difference between a medicationusage and a medicationadministration - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -238946,6 +238789,21 @@ The primary difference between a medicationusage and a medicationadministration + + + + + + + + + + + + + + + @@ -238985,7 +238843,7 @@ The primary difference between a medicationusage and a medicationadministration - + @@ -239003,10 +238861,10 @@ The primary difference between a medicationusage and a medicationadministration - + - + @@ -239021,7 +238879,7 @@ The primary difference between a medicationusage and a medicationadministration - + @@ -239121,7 +238979,7 @@ The primary difference between a medicationusage and a medicationadministration - + @@ -239451,6 +239309,72 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -239463,7 +239387,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -239902,7 +239826,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -240132,7 +240056,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -240330,7 +240254,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -240528,7 +240452,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -240722,9 +240646,182 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -240784,7 +240881,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -240880,19 +240977,23 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + - + + + + + @@ -240909,39 +241010,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -240967,35 +241039,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -241026,20 +241069,20 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + - + @@ -241053,186 +241096,17 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -241251,156 +241125,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -241462,6 +241187,44 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -241469,7 +241232,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -241892,9 +241655,43 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -241916,14 +241713,18 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + + + + + @@ -241931,25 +241732,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - + + @@ -241961,21 +241747,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - @@ -241992,56 +241763,26 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - + + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + @@ -242050,86 +241791,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -242142,7 +241804,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -242160,10 +241822,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -242179,7 +241841,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -242208,11 +241870,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -242228,53 +241886,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -242283,8 +241895,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -242310,7 +241922,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -242680,7 +242292,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -242783,7 +242395,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -243228,7 +242840,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -243278,7 +242890,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -243408,7 +243020,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -243525,7 +243137,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -243573,7 +243185,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -243756,7 +243368,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -243852,7 +243464,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -243905,7 +243517,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -244167,7 +243779,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -244208,7 +243820,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -244266,7 +243878,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -244326,7 +243938,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -244344,10 +243956,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -244363,7 +243975,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -244472,7 +244084,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -244824,7 +244436,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -245245,7 +244857,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -245648,7 +245260,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -245810,7 +245422,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -246420,7 +246032,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -246492,13 +246104,533 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -246516,10 +246648,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -246534,7 +246666,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -246637,7 +246769,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -246939,7 +247071,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -247150,7 +247282,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -247334,7 +247466,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -247451,7 +247583,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -247544,7 +247676,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -247856,7 +247988,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -247982,7 +248114,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -248366,7 +248498,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -248702,7 +248834,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -248828,7 +248960,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249022,7 +249154,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249148,7 +249280,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249241,7 +249373,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249427,7 +249559,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249621,7 +249753,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249765,7 +249897,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249826,7 +249958,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -249967,7 +250099,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250255,7 +250387,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250352,7 +250484,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250453,7 +250585,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250471,10 +250603,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -250489,7 +250621,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250513,11 +250645,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -250532,53 +250660,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -250601,8 +250683,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -250628,7 +250710,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250870,6 +250952,79 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -250886,7 +251041,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250933,7 +251088,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -250974,7 +251129,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251316,7 +251471,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251443,7 +251598,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251570,7 +251725,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251592,6 +251747,51 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -251603,7 +251803,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251628,7 +251828,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251655,7 +251855,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251855,7 +252055,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251917,7 +252117,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -251932,10 +252132,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -251950,7 +252150,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -252059,7 +252259,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -252435,7 +252635,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -252561,7 +252761,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -252884,7 +253084,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -253230,7 +253430,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -253239,40 +253439,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -253289,7 +253456,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -253421,7 +253588,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -253718,36 +253885,18 @@ This element is labeled as a modifier because the status contains codes that mar - + - - - - - - - - - - - - - - - - - - - + - + @@ -253778,7 +253927,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -253796,10 +253945,10 @@ This element is labeled as a modifier because the status contains codes that mar - + - + @@ -253814,7 +253963,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -253945,7 +254094,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -254376,7 +254525,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -254429,7 +254578,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -254780,7 +254929,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -255011,7 +255160,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -255238,7 +255387,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -255558,7 +255707,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -255895,7 +256044,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -256279,7 +256428,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -256739,7 +256888,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -256779,7 +256928,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -257720,7 +257869,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -257741,10 +257890,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -257760,7 +257909,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -257911,7 +258060,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -258321,7 +258470,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -258491,7 +258640,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -259184,7 +259333,7 @@ If the use case requires BodySite to be handled as a separate resource (e.g. to - + @@ -259633,7 +259782,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -260149,7 +260298,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -260276,7 +260425,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -261156,7 +261305,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -261174,10 +261323,10 @@ The alternate way is to use the value element for actual observations and use th - + - + @@ -261193,7 +261342,7 @@ The alternate way is to use the value element for actual observations and use th - + @@ -261305,7 +261454,7 @@ OMC"> - + @@ -261737,7 +261886,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -262245,7 +262394,7 @@ OMC-4"> - + @@ -262495,7 +262644,7 @@ Example: 702659008 |Automated count technique|."> - + @@ -262767,7 +262916,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -262897,7 +263046,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -263046,7 +263195,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -263333,7 +263482,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -263500,7 +263649,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -263662,7 +263811,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -263926,7 +264075,7 @@ OMC-4"> - + @@ -264161,7 +264310,7 @@ Example: 702659008 |Automated count technique|."> - + @@ -264250,7 +264399,7 @@ Example: 702659008 |Automated count technique|."> - + @@ -264428,7 +264577,7 @@ Example: 702659008 |Automated count technique|."> - + @@ -264457,7 +264606,7 @@ Example: 702659008 |Automated count technique|."> - + @@ -264478,10 +264627,10 @@ Example: 702659008 |Automated count technique|."> - + - + @@ -264496,7 +264645,7 @@ Example: 702659008 |Automated count technique|."> - + @@ -264520,11 +264669,7 @@ Example: 702659008 |Automated count technique|."> - - - - - + @@ -264539,53 +264684,7 @@ Example: 702659008 |Automated count technique|."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -264593,10 +264692,6 @@ Example: 702659008 |Automated count technique|."> - - - - @@ -264621,7 +264716,7 @@ Example: 702659008 |Automated count technique|."> - + @@ -264952,7 +265047,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -265033,7 +265128,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -265075,7 +265170,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -265505,7 +265600,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -265703,7 +265798,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -265856,7 +265951,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -265969,7 +266064,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -266033,7 +266128,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -266076,7 +266171,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -266208,7 +266303,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -266282,7 +266377,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -266494,7 +266589,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -266649,7 +266744,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -266720,7 +266815,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -266765,7 +266860,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -266793,7 +266888,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267038,7 +267133,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267161,7 +267256,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267214,7 +267309,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267248,7 +267343,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267282,7 +267377,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267382,7 +267477,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267400,10 +267495,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -267418,7 +267513,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267519,7 +267614,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -267809,7 +267904,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -267937,7 +268032,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -267981,7 +268076,7 @@ The required element provides a base level of computable interoperability across - + @@ -268194,7 +268289,7 @@ For resource issues, this will be a simple XPath limited to element names, repet - + @@ -268224,7 +268319,7 @@ The required element provides a base level of computable interoperability across - + @@ -268340,7 +268435,7 @@ For resource issues, this will be a simple XPath limited to element names, repet - + @@ -268358,10 +268453,10 @@ For resource issues, this will be a simple XPath limited to element names, repet - + - + @@ -268376,7 +268471,7 @@ For resource issues, this will be a simple XPath limited to element names, repet - + @@ -268510,7 +268605,7 @@ For resource issues, this will be a simple XPath limited to element names, repet - + @@ -269172,7 +269267,7 @@ For searching knowing previous names that the organization was known by can be v - + @@ -269853,7 +269948,7 @@ For searching knowing previous names that the organization was known by can be v - + @@ -269871,10 +269966,10 @@ For searching knowing previous names that the organization was known by can be v - + - + @@ -269890,7 +269985,7 @@ For searching knowing previous names that the organization was known by can be v - + @@ -269990,7 +270085,7 @@ For searching knowing previous names that the organization was known by can be v - + @@ -270861,7 +270956,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -270879,10 +270974,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -270897,7 +270992,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -270988,7 +271083,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -271473,7 +271568,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -271659,7 +271754,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -271971,7 +272066,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -272172,7 +272267,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -272673,7 +272768,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -272691,10 +272786,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -272709,7 +272804,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -272768,7 +272863,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -272914,7 +273009,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -273076,6 +273171,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + @@ -273334,6 +273432,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + @@ -273490,7 +273591,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -273511,10 +273612,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -273530,7 +273631,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -273659,7 +273760,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -274118,7 +274219,7 @@ Deceased patients may also be marked as inactive for the same reasons, but may b - + @@ -274467,7 +274568,7 @@ Deceased patients may also be marked as inactive for the same reasons, but may b - + @@ -274758,7 +274859,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -274900,7 +275001,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -275223,7 +275324,7 @@ Jurisdictions may decide that they can profile this down to 1 if desired, or 1 p - + @@ -275392,7 +275493,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -275573,7 +275674,7 @@ Deceased patients may also be marked as inactive for the same reasons, but may b - + @@ -275926,7 +276027,7 @@ Deceased patients may also be marked as inactive for the same reasons, but may b - + @@ -276193,7 +276294,7 @@ Jurisdictions may decide that they can profile this down to 1 if desired, or 1 p - + @@ -276214,7 +276315,7 @@ Jurisdictions may decide that they can profile this down to 1 if desired, or 1 p - + @@ -276232,10 +276333,10 @@ Jurisdictions may decide that they can profile this down to 1 if desired, or 1 p - + - + @@ -276250,7 +276351,7 @@ Jurisdictions may decide that they can profile this down to 1 if desired, or 1 p - + @@ -276369,7 +276470,7 @@ Jurisdictions may decide that they can profile this down to 1 if desired, or 1 p - + @@ -276682,7 +276783,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -277096,7 +277197,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -277314,7 +277415,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -277332,10 +277433,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -277350,7 +277451,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -277460,7 +277561,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -277769,7 +277870,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -277983,7 +278084,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -278139,7 +278240,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -278595,7 +278696,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -278725,7 +278826,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -278810,7 +278911,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -278937,7 +279038,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -279189,7 +279290,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -279217,7 +279318,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -279235,10 +279336,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -279254,7 +279355,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -279360,7 +279461,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -279745,7 +279846,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -279969,7 +280070,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -280128,7 +280229,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -280235,7 +280336,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -280391,7 +280492,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -280408,7 +280509,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -280426,10 +280527,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -280444,7 +280545,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -280468,11 +280569,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -280487,53 +280584,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -280541,10 +280592,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -280565,7 +280612,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -280935,7 +280982,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -281070,7 +281117,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -281807,7 +281854,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -282134,7 +282181,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -282364,7 +282411,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -282602,7 +282649,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -282818,7 +282865,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -282945,7 +282992,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283065,7 +283112,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283216,7 +283263,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283327,7 +283374,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283453,7 +283500,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283552,7 +283599,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283585,7 +283632,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283618,7 +283665,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283651,7 +283698,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283684,7 +283731,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283791,7 +283838,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -283975,7 +284022,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -284067,7 +284114,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -284137,7 +284184,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -284774,7 +284821,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -284886,7 +284933,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -284956,7 +285003,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285022,7 +285069,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285076,7 +285123,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285094,7 +285141,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285112,7 +285159,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285130,7 +285177,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285148,7 +285195,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285239,7 +285286,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285257,10 +285304,10 @@ In addition, because the subject needs to be resolved during realization, use of - + - + @@ -285276,7 +285323,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285403,7 +285450,7 @@ In addition, because the subject needs to be resolved during realization, use of - + @@ -285894,7 +285941,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -286045,7 +286092,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -286523,7 +286570,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -286742,7 +286789,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -286760,10 +286807,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -286779,7 +286826,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -286906,7 +286953,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -287583,7 +287630,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -287709,7 +287756,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -287849,7 +287896,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -288367,7 +288414,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -288500,7 +288547,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -288518,10 +288565,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -288536,7 +288583,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -288650,7 +288697,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -289119,7 +289166,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -289593,7 +289640,7 @@ Age is generally used when the patient reports an age at which the procedure was - + @@ -289855,20 +289902,25 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + + + + + - + - + + + + + + @@ -289890,7 +289942,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -289905,50 +289957,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -290249,7 +290257,7 @@ Use Procedure.reasonCode when a code sufficiently describes the reason. Use Pro - + @@ -290412,8 +290420,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -290421,12 +290429,12 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -290442,37 +290450,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -290647,7 +290624,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -291075,15 +291052,20 @@ Age is generally used when the patient reports an age at which the procedure was - - - - - + + + + + - + + + + + + @@ -291096,7 +291078,7 @@ Age is generally used when the patient reports an age at which the procedure was - + @@ -291111,36 +291093,6 @@ Age is generally used when the patient reports an age at which the procedure was - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -291345,8 +291297,8 @@ Use Procedure.reasonCode when a code sufficiently describes the reason. Use Pro - - + + @@ -291354,28 +291306,12 @@ Use Procedure.reasonCode when a code sufficiently describes the reason. Use Pro - + - - - - - - - - - - - - - - - @@ -291399,7 +291335,7 @@ Use Procedure.reasonCode when a code sufficiently describes the reason. Use Pro - + @@ -291417,10 +291353,10 @@ Use Procedure.reasonCode when a code sufficiently describes the reason. Use Pro - + - + @@ -291435,7 +291371,7 @@ Use Procedure.reasonCode when a code sufficiently describes the reason. Use Pro - + @@ -291562,7 +291498,7 @@ Use Procedure.reasonCode when a code sufficiently describes the reason. Use Pro - + @@ -292178,7 +292114,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -292500,7 +292436,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -292626,7 +292562,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -293157,7 +293093,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -293234,7 +293170,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -293252,10 +293188,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -293271,7 +293207,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -293300,11 +293236,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -293322,53 +293254,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -293383,10 +293269,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - @@ -293411,7 +293293,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -293789,7 +293671,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -293909,7 +293791,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -293997,7 +293879,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -294593,7 +294475,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -294732,7 +294614,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or * maxLength (ElementDefinition.maxLength) * answerValueSet (ElementDefinition.binding) * options (ElementDefinition.binding)."> - + @@ -294893,7 +294775,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -294954,7 +294836,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -295110,7 +294992,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -295215,7 +295097,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -295438,7 +295320,7 @@ The value may come from the ElementDefinition referred to by .definition."> - + @@ -295667,7 +295549,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -295876,6 +295758,13 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + @@ -295883,13 +295772,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - @@ -295988,7 +295870,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -296057,7 +295939,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -296117,7 +295999,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -296538,7 +296420,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or * maxLength (ElementDefinition.maxLength) * answerValueSet (ElementDefinition.binding) * options (ElementDefinition.binding)."> - + @@ -296624,7 +296506,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -296686,7 +296568,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -296761,7 +296643,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -297034,7 +296916,7 @@ The value may come from the ElementDefinition referred to by .definition."> - + @@ -297052,10 +296934,10 @@ The value may come from the ElementDefinition referred to by .definition."> - + - + @@ -297071,7 +296953,7 @@ The value may come from the ElementDefinition referred to by .definition."> - + @@ -297183,7 +297065,7 @@ The value may come from the ElementDefinition referred to by .definition."> - + @@ -297606,7 +297488,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -297894,7 +297776,7 @@ This element is optional to allow for systems that might not know the value, how - + @@ -298128,7 +298010,7 @@ There is no need for this element if the item pointed to by the linkId has a def - + @@ -298485,7 +298367,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -298830,7 +298712,7 @@ There is no need for this element if the item pointed to by the linkId has a def - + @@ -298848,10 +298730,10 @@ There is no need for this element if the item pointed to by the linkId has a def - + - + @@ -298866,7 +298748,7 @@ There is no need for this element if the item pointed to by the linkId has a def - + @@ -298957,7 +298839,7 @@ There is no need for this element if the item pointed to by the linkId has a def - + @@ -299243,6 +299125,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + @@ -299292,7 +299175,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -299470,7 +299353,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -299737,7 +299620,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -299993,6 +299876,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + @@ -300014,7 +299898,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -300222,7 +300106,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -300240,10 +300124,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -300259,7 +300143,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -300373,7 +300257,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -300890,7 +300774,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -301097,7 +300981,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -301464,7 +301348,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -301639,7 +301523,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -301657,10 +301541,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -301675,7 +301559,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -301780,7 +301664,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -302245,7 +302129,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -302289,7 +302173,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -302331,7 +302215,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -302518,52 +302402,19 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -302581,7 +302432,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -302664,7 +302515,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -302890,7 +302741,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -302996,7 +302847,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303123,7 +302974,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303192,7 +303043,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303343,7 +303194,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303519,7 +303370,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303552,7 +303403,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303585,7 +303436,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303618,7 +303469,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303651,7 +303502,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303843,7 +303694,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303874,7 +303725,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -303902,7 +303753,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304015,32 +303866,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - - - - - - - - - - - - - - - - - - - + @@ -304048,7 +303881,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304143,7 +303976,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304205,7 +304038,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304254,7 +304087,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304355,7 +304188,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304373,7 +304206,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304391,7 +304224,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304409,7 +304242,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304427,7 +304260,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304462,7 +304295,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304480,10 +304313,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -304498,7 +304331,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -304625,7 +304458,7 @@ StudyProtocolVersion"> - + @@ -305047,7 +304880,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -305783,7 +305616,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -306022,7 +305855,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -306320,7 +306153,7 @@ StudyProtocolVersion"> - + @@ -306899,7 +306732,7 @@ StudyProtocolVersion"> - + @@ -306917,10 +306750,10 @@ StudyProtocolVersion"> - + - + @@ -306935,7 +306768,7 @@ StudyProtocolVersion"> - + @@ -307055,7 +306888,7 @@ StudyProtocolVersion"> - + @@ -307365,7 +307198,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -307423,7 +307256,7 @@ It is likely that more than one "state" pattern will be recorded for a - + @@ -307941,7 +307774,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -308175,7 +308008,7 @@ It is likely that more than one "state" pattern will be recorded for a - + @@ -308193,10 +308026,10 @@ It is likely that more than one "state" pattern will be recorded for a - + - + @@ -308211,7 +308044,7 @@ It is likely that more than one "state" pattern will be recorded for a - + @@ -308339,7 +308172,7 @@ It is likely that more than one "state" pattern will be recorded for a - + @@ -308712,7 +308545,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -308997,52 +308830,19 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -309060,7 +308860,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -309153,7 +308953,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -309620,7 +309420,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -309807,32 +309607,14 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - - - - - - - - - - - - - - - - - - - + @@ -309840,7 +309622,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -310050,7 +309832,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -310068,10 +309850,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -310086,7 +309868,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -310196,7 +309978,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -310924,7 +310706,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -310942,10 +310724,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -310960,7 +310742,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -310989,11 +310771,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - + @@ -311009,53 +310787,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -311078,8 +310810,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -311105,7 +310837,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -311436,7 +311168,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -311510,7 +311242,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -311856,7 +311588,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -311892,7 +311624,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -311980,7 +311712,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312016,7 +311748,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312100,7 +311832,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312133,7 +311865,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312202,7 +311934,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312360,7 +312092,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -312445,7 +312177,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312482,7 +312214,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312687,7 +312419,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312709,7 +312441,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312752,7 +312484,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312773,7 +312505,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312812,7 +312544,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312830,7 +312562,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312886,7 +312618,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -312904,10 +312636,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -312922,7 +312654,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -313056,7 +312788,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -313577,7 +313309,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -313632,7 +313364,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -313729,7 +313461,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -314326,19 +314058,20 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + @@ -314367,54 +314100,24 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + - + + + + + @@ -314436,7 +314139,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -314451,52 +314154,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -314987,7 +314644,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -315029,7 +314686,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -315098,7 +314755,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -315528,14 +315185,15 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + + @@ -315555,35 +315213,19 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - + + - + - + + + + + @@ -315596,7 +315238,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -315611,38 +315253,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -315827,7 +315437,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -315845,10 +315455,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -315863,7 +315473,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -315972,7 +315582,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -316444,7 +316054,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -316717,7 +316327,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -316793,7 +316403,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -316811,10 +316421,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -316829,7 +316439,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -316934,7 +316544,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -317282,7 +316892,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -317541,7 +317151,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -317948,7 +317558,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -318220,7 +317830,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -318682,7 +318292,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -319285,7 +318895,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -319303,10 +318913,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -319321,7 +318931,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -319425,7 +319035,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -319855,7 +319465,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -320393,7 +320003,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -320589,7 +320199,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -320636,7 +320246,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -320973,7 +320583,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -321299,7 +320909,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -321652,7 +321262,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -321972,7 +321582,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -322304,7 +321914,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -322325,10 +321935,10 @@ Unknown does not represent "other" - one of the defined statuses must - + - + @@ -322343,7 +321953,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -322372,11 +321982,7 @@ Unknown does not represent "other" - one of the defined statuses must - - - - - + @@ -322393,53 +321999,7 @@ Unknown does not represent "other" - one of the defined statuses must - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -322573,8 +322133,8 @@ Unknown does not represent "other" - one of the defined statuses must - - + + @@ -322596,7 +322156,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -322983,7 +322543,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -323060,7 +322620,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -323438,7 +322998,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -323469,7 +323029,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -323519,7 +323079,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -323749,7 +323309,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -323819,7 +323379,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -323945,7 +323505,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -324099,7 +323659,7 @@ The type must match the elements defined in the differential and the snapshot. F - + @@ -324164,7 +323724,7 @@ The type must match the elements defined in the differential and the snapshot. F - + @@ -324354,7 +323914,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -324489,6 +324049,13 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + @@ -324592,13 +324159,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - @@ -324724,7 +324284,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -324765,7 +324325,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -325000,7 +324560,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -325017,7 +324577,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -325097,7 +324657,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -325140,7 +324700,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -325224,7 +324784,7 @@ The type must match the elements defined in the differential and the snapshot. F - + @@ -325332,7 +324892,7 @@ The type must match the elements defined in the differential and the snapshot. F - + @@ -325350,10 +324910,10 @@ The type must match the elements defined in the differential and the snapshot. F - + - + @@ -325368,7 +324928,7 @@ The type must match the elements defined in the differential and the snapshot. F - + @@ -325392,11 +324952,7 @@ The type must match the elements defined in the differential and the snapshot. F - - - - - + @@ -325413,53 +324969,7 @@ The type must match the elements defined in the differential and the snapshot. F - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -325468,8 +324978,8 @@ The type must match the elements defined in the differential and the snapshot. F - - + + @@ -325491,7 +325001,7 @@ The type must match the elements defined in the differential and the snapshot. F - + @@ -325865,7 +325375,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -325942,7 +325452,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -326305,7 +325815,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -326457,7 +325967,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -326577,7 +326087,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -326754,7 +326264,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -326823,7 +326333,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -326999,7 +326509,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -327067,7 +326577,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -327228,7 +326738,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -327466,6 +326976,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + @@ -327652,7 +327165,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -327810,7 +327323,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -327961,7 +327474,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -328044,7 +327557,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -328102,7 +327615,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -328145,7 +327658,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -328341,7 +327854,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -328523,7 +328036,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -328619,7 +328132,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -328660,7 +328173,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -328893,7 +328406,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -328980,7 +328493,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329044,7 +328557,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329171,6 +328684,9 @@ In some cases, the resource can no longer be found at the stated url, but the ur + + + @@ -329320,7 +328836,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329420,7 +328936,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329461,7 +328977,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329491,7 +329007,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329590,7 +329106,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329608,10 +329124,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -329626,7 +329142,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -329729,7 +329245,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -330059,7 +329575,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -330163,11 +329679,11 @@ This element is labeled as a modifier because the status contains codes that mar - + - + @@ -330228,7 +329744,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -330379,7 +329895,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330444,7 +329960,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330506,7 +330022,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330604,7 +330120,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330639,7 +330155,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330752,7 +330268,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330851,7 +330367,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330881,7 +330397,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330915,7 +330431,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -330981,7 +330497,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331043,7 +330559,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331092,7 +330608,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331129,7 +330645,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331150,7 +330666,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331171,7 +330687,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331216,7 +330732,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331232,7 +330748,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331252,7 +330768,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331265,7 +330781,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331283,10 +330799,10 @@ This element is labeled as a modifier because the status contains codes that mar - + - + @@ -331301,7 +330817,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331410,7 +330926,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -331717,7 +331233,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -331890,7 +331406,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -332118,7 +331634,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -332339,7 +331855,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -332554,7 +332070,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -332572,10 +332088,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -332590,7 +332106,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -332681,7 +332197,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -332948,6 +332464,31 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + @@ -333035,7 +332576,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -333191,7 +332732,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -333530,7 +333071,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -333876,7 +333417,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -334112,7 +333653,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -334348,7 +333889,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -334633,7 +334174,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -334844,7 +334385,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -335106,7 +334647,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -335463,7 +335004,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -335723,7 +335264,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -336132,6 +335673,17 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + @@ -336172,7 +335724,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -337062,7 +336614,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -337077,10 +336629,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -337095,7 +336647,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -337186,7 +336738,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -337568,7 +337120,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -337854,7 +337406,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -338090,7 +337642,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -338500,7 +338052,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -338518,10 +338070,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -338536,7 +338088,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -338627,7 +338179,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -339009,7 +338561,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -339170,7 +338722,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -339406,7 +338958,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -339617,7 +339169,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -339828,7 +339380,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -340014,7 +339566,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -340490,7 +340042,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -340505,10 +340057,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -340523,7 +340075,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -340614,7 +340166,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -340971,7 +340523,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -341418,7 +340970,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -341436,10 +340988,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -341454,7 +341006,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -341545,7 +341097,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -341852,7 +341404,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -342064,7 +341616,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -342276,7 +341828,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -342513,7 +342065,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -343098,7 +342650,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -343113,10 +342665,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -343131,7 +342683,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -343222,7 +342774,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -343754,7 +343306,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -343940,7 +343492,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -344201,7 +343753,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -344387,7 +343939,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -344648,7 +344200,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -344884,7 +344436,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -345445,7 +344997,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -345463,10 +345015,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -345481,7 +345033,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -345595,7 +345147,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -345983,7 +345535,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -346058,7 +345610,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -346113,7 +345665,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -346534,7 +346086,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -346579,7 +346131,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -346743,7 +346295,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -346761,10 +346313,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -346779,7 +346331,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -346897,7 +346449,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -347213,7 +346765,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -347309,7 +346861,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -347453,7 +347005,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -347826,19 +347378,23 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + - + + + + + @@ -347860,7 +347416,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -347875,51 +347431,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -348059,7 +347570,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -348127,7 +347638,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -348404,14 +347915,18 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + - + + + + + @@ -348423,7 +347938,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -348438,36 +347953,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -348519,7 +348004,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -348537,10 +348022,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -348555,7 +348040,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -348676,7 +348161,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -349160,7 +348645,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -349282,7 +348767,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -349329,7 +348814,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -350066,7 +349551,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -350307,7 +349792,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -350483,6 +349968,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + @@ -350663,7 +350151,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -350839,6 +350327,9 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + @@ -351142,7 +350633,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -351222,7 +350713,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -351254,7 +350745,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -351846,6 +351337,9 @@ In most cases, Tasks will have an intent of "order"."> + + + @@ -352046,6 +351540,9 @@ In most cases, Tasks will have an intent of "order"."> + + + @@ -352181,7 +351678,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -352199,10 +351696,10 @@ In most cases, Tasks will have an intent of "order"."> - + - + @@ -352217,7 +351714,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -352241,11 +351738,7 @@ In most cases, Tasks will have an intent of "order"."> - - - - - + @@ -352260,53 +351753,7 @@ In most cases, Tasks will have an intent of "order"."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -352343,8 +351790,8 @@ In most cases, Tasks will have an intent of "order"."> - - + + @@ -352366,7 +351813,7 @@ In most cases, Tasks will have an intent of "order"."> - + @@ -352697,7 +352144,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -352774,7 +352221,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -353130,7 +352577,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -353174,7 +352621,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -353363,7 +352810,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -353583,7 +353030,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -353746,7 +353193,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -353983,7 +353430,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -354219,7 +353666,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -354430,7 +353877,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -354633,7 +354080,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -354676,7 +354123,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -354837,7 +354284,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -354998,7 +354445,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -355128,7 +354575,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -355223,7 +354670,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -355264,7 +354711,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -355478,7 +354925,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -355793,7 +355240,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -355866,7 +355313,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -355884,10 +355331,10 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + - + @@ -355902,7 +355349,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -356011,7 +355458,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -356346,7 +355793,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -356410,7 +355857,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -356539,7 +355986,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -356665,7 +356112,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -356758,7 +356205,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -356905,7 +356352,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357041,7 +356488,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357167,7 +356614,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357260,7 +356707,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357386,7 +356833,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357479,7 +356926,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357676,7 +357123,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357858,7 +357305,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -357998,7 +357445,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -358186,7 +357633,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -358222,7 +357669,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -358294,7 +357741,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -358373,7 +357820,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -358421,7 +357868,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -358553,7 +358000,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -358571,10 +358018,10 @@ This element is labeled as a modifier because the status contains codes that mar - + - + @@ -358589,7 +358036,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -358613,11 +358060,7 @@ This element is labeled as a modifier because the status contains codes that mar - - - - - + @@ -358632,53 +358075,7 @@ This element is labeled as a modifier because the status contains codes that mar - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -358687,8 +358084,8 @@ This element is labeled as a modifier because the status contains codes that mar - - + + @@ -358710,7 +358107,7 @@ This element is labeled as a modifier because the status contains codes that mar - + @@ -359084,7 +358481,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -359161,7 +358558,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -359524,7 +358921,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -359726,7 +359123,7 @@ The origin indices provided elsewhere in the test script must be one of these or - + @@ -359934,7 +359331,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -360070,7 +359467,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -360257,7 +359654,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -360570,7 +359967,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -360818,7 +360215,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361160,7 +360557,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361307,7 +360704,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361450,7 +360847,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361614,7 +361011,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361707,7 +361104,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361748,7 +361145,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361833,7 +361230,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -361929,7 +361326,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -362268,7 +361665,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -362447,7 +361844,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -362565,7 +361962,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -362703,7 +362100,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -362763,7 +362160,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -362826,7 +362223,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -362860,7 +362257,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -363033,7 +362430,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -363230,7 +362627,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -363441,7 +362838,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -363581,7 +362978,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -363716,7 +363113,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -363812,7 +363209,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -363853,7 +363250,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -364512,7 +363909,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364560,7 +363957,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364586,7 +363983,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364626,7 +364023,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364808,7 +364205,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364866,7 +364263,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364929,7 +364326,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364959,7 +364356,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -364992,7 +364389,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -365011,7 +364408,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -365214,7 +364611,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -365232,10 +364629,10 @@ The destination indices provided elsewhere in the test script must be one of the - + - + @@ -365250,7 +364647,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -365364,7 +364761,7 @@ The destination indices provided elsewhere in the test script must be one of the - + @@ -365872,7 +365269,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -366376,7 +365773,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -366528,7 +365925,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -366561,7 +365958,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -366604,7 +366001,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -366805,8 +366202,8 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - - + + @@ -366843,7 +366240,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -366995,7 +366392,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -367209,7 +366606,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -367540,7 +366937,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -367559,7 +366956,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -367622,8 +367019,8 @@ Unknown does not represent "other" - one of the defined statuses must - - + + @@ -367659,7 +367056,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -367683,7 +367080,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -367704,10 +367101,10 @@ Unknown does not represent "other" - one of the defined statuses must - + - + @@ -367722,7 +367119,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -367746,11 +367143,7 @@ Unknown does not represent "other" - one of the defined statuses must - - - - - + @@ -367765,53 +367158,7 @@ Unknown does not represent "other" - one of the defined statuses must - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -367820,8 +367167,8 @@ Unknown does not represent "other" - one of the defined statuses must - - + + @@ -367843,7 +367190,7 @@ Unknown does not represent "other" - one of the defined statuses must - + @@ -368217,7 +367564,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -368294,7 +367641,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -368698,7 +368045,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -368921,7 +368268,7 @@ The Value Set Definition specification defines an ActiveOnly element, which is t - + @@ -369128,7 +368475,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -369325,7 +368672,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -369566,7 +368913,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -369722,7 +369069,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -369889,7 +369236,7 @@ Expansion.parameter is a simplified list of parameters - a subset of the featur - + @@ -370131,7 +369478,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -370336,7 +369683,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -370543,7 +369890,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -370862,7 +370209,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -371059,7 +370406,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -371155,7 +370502,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -371196,7 +370543,7 @@ In some cases, the resource can no longer be found at the stated url, but the ur - + @@ -371694,7 +371041,7 @@ The Value Set Definition specification defines an ActiveOnly element, which is t - + @@ -372074,7 +371421,7 @@ Expansion.parameter is a simplified list of parameters - a subset of the featur - + @@ -372092,10 +371439,10 @@ Expansion.parameter is a simplified list of parameters - a subset of the featur - + - + @@ -372110,7 +371457,7 @@ Expansion.parameter is a simplified list of parameters - a subset of the featur - + @@ -372206,7 +371553,7 @@ Expansion.parameter is a simplified list of parameters - a subset of the featur - + @@ -372562,7 +371909,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -372804,7 +372151,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -373162,7 +372509,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -373512,7 +372859,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -373751,7 +373098,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -374141,7 +373488,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -374159,10 +373506,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -374177,7 +373524,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -374291,7 +373638,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -374608,7 +373955,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -374870,7 +374217,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -375040,7 +374387,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -375184,7 +374531,7 @@ Often insurance will not cover a lens with power between +75 and -75."> - + @@ -375341,7 +374688,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -375653,7 +375000,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -375861,7 +375208,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -375961,7 +375308,7 @@ Often insurance will not cover a lens with power between +75 and -75."> - + @@ -376093,1083 +375440,4 @@ Often insurance will not cover a lens with power between +75 and -75."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-types.xml b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-types.xml index 3964bf6686d..c28c3afe155 100644 --- a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-types.xml +++ b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/profile/profiles-types.xml @@ -1,7 +1,7 @@ - + @@ -10,7 +10,7 @@ - + @@ -19,10 +19,10 @@ - + - + @@ -31,7 +31,7 @@ - + @@ -40,6 +40,8 @@ + + @@ -227,7 +229,7 @@ - + @@ -236,10 +238,10 @@ - + - + @@ -248,7 +250,7 @@ - + @@ -464,7 +466,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -473,10 +475,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -485,11 +487,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -636,7 +638,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -645,10 +647,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -657,11 +659,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -806,7 +808,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -815,10 +817,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -827,7 +829,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -978,7 +980,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -987,10 +989,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -999,7 +1001,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -1148,7 +1150,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -1157,10 +1159,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1169,11 +1171,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1318,7 +1320,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -1327,10 +1329,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1339,11 +1341,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1488,7 +1490,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -1497,10 +1499,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1509,11 +1511,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1660,7 +1662,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -1669,10 +1671,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1681,7 +1683,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -1832,7 +1834,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -1841,10 +1843,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -1853,11 +1855,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2004,7 +2006,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2013,10 +2015,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2025,11 +2027,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2174,13 +2176,185 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -2189,10 +2363,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2201,7 +2375,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2352,7 +2526,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2361,10 +2535,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2373,7 +2547,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2524,7 +2698,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2533,10 +2707,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2545,7 +2719,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2694,7 +2868,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2703,10 +2877,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2715,11 +2889,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2868,7 +3042,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -2877,10 +3051,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -2889,11 +3063,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3038,7 +3212,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3047,10 +3221,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3059,7 +3233,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3208,7 +3382,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3217,10 +3391,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3229,11 +3403,11 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3380,7 +3554,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3389,10 +3563,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3401,7 +3575,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3550,7 +3724,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3559,10 +3733,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3571,7 +3745,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3722,7 +3896,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3731,10 +3905,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3743,7 +3917,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3887,7 +4061,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3896,10 +4070,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -3909,7 +4083,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3933,7 +4107,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -3954,7 +4128,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -4092,7 +4265,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -4142,7 +4315,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -4559,7 +4732,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -4595,7 +4768,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -4858,16 +5031,16 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -4876,7 +5049,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5098,7 +5271,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5260,7 +5433,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5269,10 +5442,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -5281,7 +5454,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5295,7 +5468,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5316,7 +5489,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -5619,7 +5791,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5628,10 +5800,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -5641,7 +5813,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5655,7 +5827,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5676,7 +5848,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -5818,7 +5989,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -5965,7 +6136,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6293,7 +6464,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6392,7 +6563,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6543,13 +6714,340 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -6558,10 +7056,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -6571,7 +7069,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6590,7 +7088,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6611,7 +7109,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -6878,13 +7375,256 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -6893,10 +7633,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -6906,7 +7646,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6925,7 +7665,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -6946,7 +7686,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -7405,7 +8144,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7414,10 +8153,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -7427,7 +8166,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7436,7 +8175,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7456,7 +8195,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -7644,7 +8382,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7653,10 +8391,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -7666,7 +8404,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7685,7 +8423,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7705,7 +8443,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -7844,7 +8581,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -7931,7 +8668,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8068,7 +8805,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8128,7 +8865,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8196,16 +8933,16 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -8215,7 +8952,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8224,7 +8961,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8241,7 +8978,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -8360,7 +9096,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8441,7 +9177,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8476,16 +9212,16 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -8495,7 +9231,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8702,7 +9438,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8858,16 +9594,16 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -8876,7 +9612,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8885,7 +9621,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -8902,7 +9638,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -9024,7 +9759,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -9698,7 +10433,7 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + @@ -9732,7 +10467,7 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + @@ -9960,29 +10695,197 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + @@ -9991,7 +10894,7 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + @@ -10213,7 +11116,7 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + @@ -10375,16 +11278,16 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + - + - + @@ -10393,7 +11296,7 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + @@ -10407,7 +11310,7 @@ The value of mustSupport SHALL be a FHIRPath resolveable on the type of the Data - + @@ -10530,7 +11433,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -11625,7 +12528,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -11634,10 +12537,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -11646,7 +12549,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -11871,7 +12774,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12036,7 +12939,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12045,10 +12948,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -12057,7 +12960,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12086,7 +12989,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12322,7 +13225,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12421,7 +13324,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12858,7 +13761,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -12999,7 +13902,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13573,7 +14476,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13834,7 +14737,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13876,7 +14779,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -13927,6 +14830,9 @@ No default values are ever defined in the FHIR specification, nor can they be de + + + @@ -14169,6 +15075,9 @@ No default values are ever defined in the FHIR specification, nor can they be de + + + @@ -14363,6 +15272,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -14678,6 +15590,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -14851,6 +15766,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -14905,6 +15823,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -15202,7 +16123,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -15638,7 +16559,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -15909,7 +16830,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -16148,7 +17069,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -16339,7 +17260,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -16424,7 +17345,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -16751,7 +17672,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -16873,7 +17794,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -16901,7 +17822,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -16947,6 +17868,9 @@ No default values are ever defined in the FHIR specification, nor can they be de + + + @@ -17147,6 +18071,9 @@ No default values are ever defined in the FHIR specification, nor can they be de + + + @@ -17327,6 +18254,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -17526,6 +18456,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -17685,6 +18618,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -17725,6 +18661,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -17855,7 +18794,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18077,7 +19016,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18204,7 +19143,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18256,16 +19195,16 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + - + - + @@ -18274,7 +19213,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18283,7 +19222,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18300,7 +19239,6 @@ When pattern[x] is used to constrain a complex object, it means that each proper - @@ -18629,7 +19567,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18638,10 +19576,10 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + - + @@ -18651,7 +19589,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18660,7 +19598,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -18680,7 +19618,6 @@ When pattern[x] is used to constrain a complex object, it means that each proper - @@ -18848,6 +19785,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -19065,6 +20005,9 @@ When pattern[x] is used to constrain a complex object, it means that each proper + + + @@ -19200,7 +20143,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19209,10 +20152,10 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + - + @@ -19222,7 +20165,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19241,7 +20184,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19262,7 +20205,6 @@ When pattern[x] is used to constrain a complex object, it means that each proper - @@ -19396,7 +20338,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19684,7 +20626,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19850,7 +20792,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19859,10 +20801,10 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + - + @@ -19872,7 +20814,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19891,7 +20833,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -19911,7 +20853,6 @@ When pattern[x] is used to constrain a complex object, it means that each proper - @@ -20045,7 +20986,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -20310,7 +21251,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -20468,16 +21409,16 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + - + - + @@ -20486,7 +21427,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -20495,7 +21436,7 @@ When pattern[x] is used to constrain a complex object, it means that each proper - + @@ -20614,7 +21555,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -20847,7 +21788,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -20856,10 +21797,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -20868,7 +21809,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -21291,7 +22232,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21300,10 +22241,10 @@ This element can be used to indicate where the current master source of a resour - + - + @@ -21312,7 +22253,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21326,7 +22267,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21346,7 +22287,6 @@ This element can be used to indicate where the current master source of a resour - @@ -21504,7 +22444,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21567,7 +22507,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21584,7 +22524,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21593,10 +22533,10 @@ This element can be used to indicate where the current master source of a resour - + - + @@ -21605,7 +22545,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21614,7 +22554,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21634,7 +22574,6 @@ This element can be used to indicate where the current master source of a resour - @@ -21757,7 +22696,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21842,7 +22781,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21888,16 +22827,16 @@ This element can be used to indicate where the current master source of a resour - + - + - + @@ -21906,7 +22845,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -21915,7 +22854,7 @@ This element can be used to indicate where the current master source of a resour - + @@ -22041,7 +22980,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22514,16 +23453,16 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -22532,7 +23471,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22541,7 +23480,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22558,7 +23497,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -22702,7 +23640,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22813,7 +23751,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22881,7 +23819,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22936,7 +23874,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22961,7 +23899,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22970,10 +23908,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -22982,7 +23920,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -22996,7 +23934,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -23019,7 +23957,6 @@ Period is not used for a duration (a measure of elapsed time). See [Duration](da - @@ -23280,16 +24217,16 @@ Period is not used for a duration (a measure of elapsed time). See [Duration](da - + - + - + @@ -23298,7 +24235,7 @@ Period is not used for a duration (a measure of elapsed time). See [Duration](da - + @@ -23307,7 +24244,7 @@ Period is not used for a duration (a measure of elapsed time). See [Duration](da - + @@ -23426,7 +24363,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -23623,22 +24560,189 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + @@ -23647,7 +24751,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -23656,7 +24760,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -23775,7 +24879,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24224,16 +25328,16 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -24242,7 +25346,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24251,7 +25355,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24370,7 +25474,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24567,7 +25671,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24576,10 +25680,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -24589,7 +25693,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24603,7 +25707,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24624,7 +25728,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -24796,7 +25899,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -24986,7 +26089,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25072,7 +26175,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25081,10 +26184,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -25094,7 +26197,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25108,7 +26211,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25129,7 +26232,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -25386,7 +26488,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25395,10 +26497,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -25408,7 +26510,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25422,7 +26524,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25443,7 +26545,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -25676,7 +26777,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25685,10 +26786,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -25697,7 +26798,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25706,7 +26807,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -25727,7 +26828,6 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - @@ -26088,16 +27188,16 @@ Reference is intended to point to a structure that can potentially be expressed - + - + - + @@ -26107,7 +27207,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -26116,7 +27216,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -26134,7 +27234,6 @@ Reference is intended to point to a structure that can potentially be expressed - @@ -26253,7 +27352,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -26439,7 +27538,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -26522,16 +27621,16 @@ Reference is intended to point to a structure that can potentially be expressed - + - + - + @@ -26541,7 +27640,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -26555,7 +27654,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -26573,7 +27672,6 @@ Reference is intended to point to a structure that can potentially be expressed - @@ -27018,16 +28116,16 @@ Reference is intended to point to a structure that can potentially be expressed - + - + - + @@ -27037,7 +28135,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27046,7 +28144,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27064,7 +28162,6 @@ Reference is intended to point to a structure that can potentially be expressed - @@ -27316,7 +28413,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27352,7 +28449,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27486,7 +28583,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27507,7 +28604,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27531,16 +28628,16 @@ Reference is intended to point to a structure that can potentially be expressed - + - + - + @@ -27549,7 +28646,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27558,7 +28655,7 @@ Reference is intended to point to a structure that can potentially be expressed - + @@ -27677,7 +28774,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -28904,16 +30001,16 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + - + @@ -28922,7 +30019,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -28931,7 +30028,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29050,7 +30147,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29405,7 +30502,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29414,10 +30511,10 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + - + @@ -29427,7 +30524,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29441,7 +30538,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29574,7 +30671,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -29989,7 +31086,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -30143,7 +31240,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -30180,7 +31277,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -30249,7 +31346,7 @@ Modifier extensions SHALL NOT change the meaning of any elements on Resource or - + @@ -30547,7 +31644,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -30631,7 +31728,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -30654,7 +31751,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -30695,7 +31792,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -30751,16 +31848,16 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + - + - + @@ -30769,7 +31866,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -30778,7 +31875,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -30796,7 +31893,6 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - @@ -30936,7 +32032,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31103,7 +32199,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31174,16 +32270,16 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + - + - + @@ -31193,7 +32289,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31202,7 +32298,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31219,7 +32315,6 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - @@ -31466,7 +32561,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31475,10 +32570,10 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + - + @@ -31487,7 +32582,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31516,7 +32611,6 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - @@ -31695,7 +32789,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31840,7 +32934,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31849,10 +32943,10 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + - + @@ -31861,7 +32955,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + @@ -31890,7 +32984,6 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - @@ -32069,7 +33162,7 @@ A Timing schedule can be a list of events and/or criteria for when the event hap - + diff --git a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v2-tables.xml b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v2-tables.xml index a2d3a7cdf94..fa5557f5728 100644 --- a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v2-tables.xml +++ b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v2-tables.xml @@ -1,14 +1,14 @@ - + - + - + @@ -19,10 +19,10 @@ - + - - + + @@ -32,21 +32,21 @@ - + - + - + - + @@ -57,10 +57,10 @@ - + - - + + @@ -70,21 +70,21 @@ - + - + - + - + @@ -95,10 +95,10 @@ - + - - + + @@ -108,21 +108,21 @@ - + - + - + - + @@ -133,10 +133,10 @@ - + - - + + @@ -146,21 +146,21 @@ - + - + - + - + @@ -171,10 +171,10 @@ - - - - + + + + @@ -184,21 +184,21 @@ - + - + - + - + @@ -209,10 +209,10 @@ - - - - + + + + @@ -222,21 +222,21 @@ - + - + - + - + @@ -247,10 +247,10 @@ - + - - + + @@ -260,21 +260,21 @@ - + - + - + - + @@ -285,10 +285,10 @@ - + - - + + @@ -298,21 +298,21 @@ - + - + - + - + @@ -323,10 +323,10 @@ - - - - + + + + @@ -336,21 +336,21 @@ - + - + - + - + @@ -361,10 +361,10 @@ - + - - + + @@ -374,21 +374,21 @@ - + - + - + - + @@ -399,10 +399,10 @@ - + - - + + @@ -412,21 +412,21 @@ - + - + - + - + @@ -437,10 +437,10 @@ - + - - + + @@ -450,21 +450,21 @@ - + - + - + - + @@ -475,10 +475,10 @@ - + - - + + @@ -488,21 +488,21 @@ - + - + - + - + @@ -513,10 +513,10 @@ - + - - + + @@ -526,21 +526,21 @@ - + - + - + - + @@ -551,10 +551,10 @@ - + - - + + @@ -564,21 +564,21 @@ - + - + - + - + @@ -589,10 +589,10 @@ - + - - + + @@ -602,21 +602,21 @@ - + - + - + - + @@ -627,10 +627,10 @@ - + - - + + @@ -640,21 +640,21 @@ - + - + - + - + @@ -665,10 +665,10 @@ - + - - + + @@ -678,21 +678,21 @@ - + - + - + - + @@ -703,10 +703,10 @@ - + - - + + @@ -716,21 +716,21 @@ - + - + - + - + @@ -741,10 +741,10 @@ - + - - + + @@ -754,21 +754,21 @@ - + - + - + - + @@ -779,10 +779,10 @@ - + - - + + @@ -792,21 +792,21 @@ - + - + - + - + @@ -817,10 +817,10 @@ - + - - + + @@ -830,21 +830,21 @@ - + - + - + - + @@ -855,10 +855,10 @@ - + - - + + @@ -868,21 +868,21 @@ - + - + - + - + @@ -893,10 +893,10 @@ - + - - + + @@ -906,21 +906,21 @@ - + - + - + - + @@ -931,10 +931,10 @@ - + - - + + @@ -944,21 +944,21 @@ - + - + - + - + @@ -969,10 +969,10 @@ - + - - + + @@ -982,21 +982,21 @@ - + - + - + - + @@ -1007,10 +1007,10 @@ - + - - + + @@ -1020,11 +1020,205 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1109,120 +1303,6 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -1262,10 +1342,10 @@ - + - + @@ -1276,10 +1356,10 @@ - + - - + + @@ -1289,21 +1369,21 @@ - + - + - + - + @@ -1314,10 +1394,10 @@ - + - - + + @@ -1327,21 +1407,21 @@ - + - + - + - + @@ -1352,10 +1432,10 @@ - + - - + + @@ -1365,21 +1445,21 @@ - + - + - + - + @@ -1390,10 +1470,10 @@ - + - - + + @@ -1403,21 +1483,21 @@ - + - + - + - + @@ -1428,10 +1508,10 @@ - + - - + + @@ -1441,21 +1521,21 @@ - + - + - + - + @@ -1466,10 +1546,10 @@ - + - - + + @@ -1479,21 +1559,21 @@ - + - + - + - + @@ -1504,10 +1584,10 @@ - + - - + + @@ -1517,38 +1597,114 @@ - + - + - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - + + @@ -1558,21 +1714,21 @@ - + - + - + - + @@ -1583,10 +1739,10 @@ - + - - + + @@ -1596,21 +1752,21 @@ - + - + - + - + @@ -1621,10 +1777,10 @@ - + - - + + @@ -1634,21 +1790,21 @@ - + - + - + - + @@ -1659,10 +1815,10 @@ - + - - + + @@ -1672,21 +1828,21 @@ - + - + - + - + @@ -1697,10 +1853,10 @@ - + - - + + @@ -1710,21 +1866,21 @@ - + - + - + - + @@ -1735,10 +1891,10 @@ - + - - + + @@ -1748,21 +1904,21 @@ - + - + - + - + @@ -1773,10 +1929,10 @@ - + - - + + @@ -1786,21 +1942,21 @@ - + - + - + - + @@ -1811,10 +1967,10 @@ - + - - + + @@ -1824,21 +1980,21 @@ - + - + - + - + @@ -1849,10 +2005,10 @@ - + - - + + @@ -1862,21 +2018,21 @@ - + - + - + - + @@ -1887,10 +2043,10 @@ - + - - + + @@ -1900,21 +2056,21 @@ - + - + - + - + @@ -1925,10 +2081,10 @@ - + - - + + @@ -1938,21 +2094,21 @@ - + - + - + - + @@ -1963,10 +2119,10 @@ - + - - + + @@ -1976,21 +2132,21 @@ - + - + - + - + @@ -2001,10 +2157,10 @@ - + - - + + @@ -2014,21 +2170,21 @@ - + - + - + - + @@ -2039,10 +2195,10 @@ - + - - + + @@ -2052,21 +2208,21 @@ - + - + - + - + @@ -2077,10 +2233,10 @@ - + - - + + @@ -2090,21 +2246,21 @@ - + - + - + - + @@ -2115,10 +2271,10 @@ - + - - + + @@ -2128,21 +2284,21 @@ - + - + - + - + @@ -2153,10 +2309,10 @@ - + - - + + @@ -2166,44 +2322,21 @@ - + + - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -2214,10 +2347,10 @@ - + - - + + @@ -2227,21 +2360,21 @@ - + - + - + - + @@ -2252,10 +2385,10 @@ - + - - + + @@ -2265,21 +2398,6031 @@ - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2293,10 +8436,10 @@ - + - - + + @@ -2306,21 +8449,21 @@ - + - + - + - + @@ -2331,10 +8474,10 @@ - + - - + + @@ -2344,21 +8487,21 @@ - + - + - + - + @@ -2369,10 +8512,10 @@ - + - - + + @@ -2382,21 +8525,21 @@ - + - + - + - + @@ -2407,10 +8550,10 @@ - + - - + + @@ -2420,11 +8563,2671 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2507,10 +11310,10 @@ - + - + @@ -2521,10 +11324,10 @@ - + - - + + @@ -2534,21 +11337,21 @@ - + - + - + - + @@ -2559,10 +11362,10 @@ - + - - + + @@ -2572,35 +11375,38 @@ - + - + - + - + - + - + - + + + + - - + + @@ -2610,21 +11416,21 @@ - + - + - + - + @@ -2635,10 +11441,10 @@ - + - - + + @@ -2648,21 +11454,21 @@ - + - + - + - + @@ -2673,10 +11479,10 @@ - + - - + + @@ -2686,21 +11492,21 @@ - + - + - + - + @@ -2711,10 +11517,10 @@ - + - - + + @@ -2724,21 +11530,21 @@ - + - + - + - + @@ -2749,10 +11555,10 @@ - + - - + + @@ -2762,21 +11568,21 @@ - + - + - + - + @@ -2787,10 +11593,10 @@ - + - - + + @@ -2800,11 +11606,11 @@ - + - + @@ -2890,10 +11696,10 @@ - + - + @@ -2904,10 +11710,10 @@ - + - - + + @@ -2917,21 +11723,21 @@ - + - + - + - + @@ -2942,10 +11748,10 @@ - + - - + + @@ -2955,21 +11761,21 @@ - + - + - + - + @@ -2980,10 +11786,10 @@ - + - - + + @@ -2993,21 +11799,21 @@ - + - + - + - + @@ -3018,10 +11824,10 @@ - + - - + + @@ -3031,21 +11837,21 @@ - + - + - + - + @@ -3056,10 +11862,10 @@ - + - - + + @@ -3069,21 +11875,21 @@ - + - + - + - + @@ -3094,10 +11900,10 @@ - + - - + + @@ -3107,21 +11913,21 @@ - + - + - + - + @@ -3132,10 +11938,10 @@ - + - - + + @@ -3145,21 +11951,21 @@ - + - + - + - + @@ -3170,10 +11976,10 @@ - + - - + + @@ -3183,21 +11989,21 @@ - + - + - + - + @@ -3208,10 +12014,10 @@ - + - - + + @@ -3221,21 +12027,21 @@ - + - + - + - + @@ -3246,10 +12052,10 @@ - + - - + + @@ -3259,21 +12065,21 @@ - + - + - + - + @@ -3284,10 +12090,10 @@ - + - - + + @@ -3297,21 +12103,21 @@ - + - + - + - + @@ -3322,10 +12128,10 @@ - + - - + + @@ -3335,25 +12141,21 @@ - + - + - + - + @@ -3364,10 +12166,10 @@ - + - - + + @@ -3377,21 +12179,21 @@ - + - + - + - + @@ -3402,10 +12204,10 @@ - + - - + + @@ -3415,21 +12217,21 @@ - + - + - + - + @@ -3440,10 +12242,10 @@ - + - - + + @@ -3453,21 +12255,21 @@ - + - + - + - + @@ -3478,10 +12280,10 @@ - + - - + + @@ -3491,21 +12293,21 @@ - + - + - + - + @@ -3516,10 +12318,10 @@ - + - - + + @@ -3529,21 +12331,21 @@ - + - + - + - + @@ -3554,10 +12356,10 @@ - + - - + + @@ -3567,21 +12369,21 @@ - + - + - + - + @@ -3592,10 +12394,10 @@ - + - - + + @@ -3605,21 +12407,21 @@ - + - + - + - + @@ -3630,10 +12432,10 @@ - + - - + + @@ -3643,21 +12445,21 @@ - + - + - + - + @@ -3668,10 +12470,10 @@ - + - - + + @@ -3681,21 +12483,21 @@ - + - + - + - + @@ -3706,10 +12508,10 @@ - + - - + + @@ -3719,21 +12521,21 @@ - + - + - + - + @@ -3744,10 +12546,10 @@ - + - - + + @@ -3757,21 +12559,21 @@ - + - + - + - + @@ -3782,10 +12584,10 @@ - + - - + + @@ -3795,21 +12597,21 @@ - + - + - + - + @@ -3820,10 +12622,10 @@ - + - - + + @@ -3833,21 +12635,21 @@ - + - + - + - + @@ -3858,10 +12660,10 @@ - + - - + + @@ -3871,21 +12673,21 @@ - + - + - + - + @@ -3896,10 +12698,10 @@ - + - - + + @@ -3909,21 +12711,21 @@ - + - + - + - + @@ -3934,10 +12736,10 @@ - + - - + + @@ -3947,21 +12749,21 @@ - + - + - + - + @@ -3972,10 +12774,10 @@ - + - - + + @@ -3985,21 +12787,21 @@ - + - + - + - + @@ -4010,10 +12812,10 @@ - + - - + + @@ -4023,21 +12825,21 @@ - + - + - + - + @@ -4048,10 +12850,10 @@ - + - - + + @@ -4061,21 +12863,21 @@ - + - + - + - + @@ -4086,10 +12888,10 @@ - + - - + + @@ -4099,21 +12901,21 @@ - + - + - + - + @@ -4124,10 +12926,10 @@ - + - - + + @@ -4137,21 +12939,21 @@ - + - + - + - + @@ -4162,10 +12964,10 @@ - + - - + + @@ -4175,21 +12977,21 @@ - + - + - + - + @@ -4200,10 +13002,10 @@ - + - - + + @@ -4213,21 +13015,21 @@ - + - + - + - + @@ -4238,10 +13040,10 @@ - + - - + + @@ -4251,21 +13053,21 @@ - + - + - + - + @@ -4276,10 +13078,10 @@ - + - - + + @@ -4289,21 +13091,21 @@ - + - + - + - + @@ -4314,10 +13116,10 @@ - + - - + + @@ -4327,21 +13129,21 @@ - + - + - + - + @@ -4352,10 +13154,10 @@ - + - - + + @@ -4365,21 +13167,21 @@ - + - + - + - + @@ -4390,10 +13192,10 @@ - + - - + + @@ -4403,21 +13205,21 @@ - + - + - + - + @@ -4428,10 +13230,10 @@ - + - - + + @@ -4441,21 +13243,21 @@ - + - + - + - + @@ -4466,10 +13268,10 @@ - + - - + + @@ -4479,21 +13281,21 @@ - + - + - + - + @@ -4504,10 +13306,10 @@ - + - - + + @@ -4517,21 +13319,21 @@ - + - + - + - + @@ -4542,10 +13344,10 @@ - + - - + + @@ -4555,21 +13357,21 @@ - + - + - + - + @@ -4580,10 +13382,10 @@ - + - - + + @@ -4593,21 +13395,21 @@ - + - + - + - + @@ -4618,10 +13420,10 @@ - + - - + + @@ -4631,21 +13433,21 @@ - + - + - + - + @@ -4656,10 +13458,10 @@ - + - - + + @@ -4669,21 +13471,21 @@ - + - + - + - + @@ -4694,10 +13496,10 @@ - + - - + + @@ -4707,21 +13509,21 @@ - + - + - + - + @@ -4732,10 +13534,10 @@ - + - - + + @@ -4745,21 +13547,21 @@ - + - + - + - + @@ -4770,10 +13572,10 @@ - + - - + + @@ -4783,21 +13585,21 @@ - + - + - + - + @@ -4808,10 +13610,10 @@ - + - - + + @@ -4821,21 +13623,21 @@ - + - + - + - + @@ -4846,10 +13648,10 @@ - + - - + + @@ -4859,21 +13661,21 @@ - + - + - + - + @@ -4884,10 +13686,10 @@ - + - - + + @@ -4897,923 +13699,11 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -5896,10 +13786,10 @@ - + - + @@ -5910,10 +13800,10 @@ - + - - + + @@ -5923,21 +13813,21 @@ - + - + - + - + @@ -5948,10 +13838,10 @@ - + - - + + @@ -5961,21 +13851,21 @@ - + - + - + - + @@ -5986,10 +13876,10 @@ - + - - + + @@ -5999,21 +13889,21 @@ - + - + - + - + @@ -6024,10 +13914,10 @@ - + - - + + @@ -6037,21 +13927,21 @@ - + - + - + - + @@ -6062,10 +13952,10 @@ - + - - + + @@ -6075,21 +13965,21 @@ - + - + - + - + @@ -6100,10 +13990,10 @@ - + - - + + @@ -6113,21 +14003,21 @@ - + - + - + - + @@ -6138,10 +14028,10 @@ - + - - + + @@ -6151,21 +14041,21 @@ - + - + - + - + @@ -6176,10 +14066,10 @@ - + - - + + @@ -6189,21 +14079,21 @@ - + - + - + - + @@ -6214,10 +14104,10 @@ - + - - + + @@ -6227,21 +14117,21 @@ - + - + - + - + @@ -6252,10 +14142,10 @@ - + - - + + @@ -6265,21 +14155,21 @@ - + - + - + - + @@ -6290,10 +14180,10 @@ - + - - + + @@ -6303,21 +14193,21 @@ - + - + - + - + @@ -6328,10 +14218,10 @@ - + - - + + @@ -6341,21 +14231,21 @@ - + - + - + - + @@ -6366,10 +14256,10 @@ - + - - + + @@ -6379,21 +14269,21 @@ - + - + - + - + @@ -6404,10 +14294,10 @@ - + - - + + @@ -6417,21 +14307,21 @@ - + - + - + - + @@ -6442,10 +14332,10 @@ - + - - + + @@ -6455,21 +14345,21 @@ - + - + - + - + @@ -6480,10 +14370,10 @@ - + - - + + @@ -6493,21 +14383,21 @@ - + - + - + - + @@ -6518,10 +14408,10 @@ - + - - + + @@ -6531,21 +14421,21 @@ - + - + - + - + @@ -6556,10 +14446,10 @@ - + - - + + @@ -6569,11 +14459,1747 @@ - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7016,10 +16642,10 @@ - + - + @@ -7030,10 +16656,10 @@ - + - - + + @@ -7043,2332 +16669,22 @@ - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + @@ -9472,7326 +16788,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -16802,14 +16802,14 @@ - + - + - - + + @@ -16819,7 +16819,521 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16834,15 +17348,5107 @@ - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16854,15 +22460,23 @@ - - + + + + + + + + + + - + @@ -16874,15 +22488,275 @@ - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16894,15 +22768,23 @@ - - + + + + + + + + + + - + @@ -16914,15 +22796,23 @@ - - + + + + + + + + + + - + @@ -16934,15 +22824,23 @@ - - + + + + + + + + + + - + @@ -16954,15 +22852,35 @@ - - + + + + + + + + + + + + + + + + + + + + + + - + @@ -16970,19 +22888,519 @@ - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -16990,19 +23408,411 @@ - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17010,19 +23820,199 @@ - + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17030,19 +24020,39 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + - + @@ -17050,19 +24060,39 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + - + @@ -17070,19 +24100,79 @@ - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -17090,19 +24180,39 @@ - + - - + + + + + + + + + + + + + + + + + + + + + + - + @@ -17110,19 +24220,19 @@ - + - - + + - + @@ -17130,1017 +24240,17 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -18151,14 +24261,14 @@ - + - + - - + + @@ -18168,7 +24278,1715 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -18184,14 +26002,42 @@ - + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + @@ -18199,211 +26045,27 @@ - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -18411,17 +26073,213 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -18432,14 +26290,14 @@ - + - + - - + + @@ -18449,7 +26307,144 @@ - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -18464,4020 +26459,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -22485,19 +26475,27 @@ - + + + + + + + + + - - + + - + @@ -22505,389 +26503,27 @@ - + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -22895,53 +26531,717 @@ OK = Preferred appointment day NO = Day is not preferred"> - + + + + + + + + + - - - - - - - - - - - - - - + + + + + + + + + + - + + + + + + + + + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -22952,14 +27252,14 @@ OK = Preferred appointment day NO = Day is not preferred"> - + - + - - + + @@ -22969,410 +27269,291 @@ OK = Preferred appointment day NO = Day is not preferred"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + - + - - + + + + + + + + + + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -24595,264 +28776,6 @@ OK = Preferred appointment day NO = Day is not preferred"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -25894,6 +29817,1729 @@ OK = Preferred appointment day NO = Day is not preferred"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -36208,1850 +41854,6 @@ Note: This can be applied to quantitative or qualitative observations."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -38616,10 +42418,10 @@ Note: This can be applied to quantitative or qualitative observations."> - + - + @@ -38630,759 +42432,14 @@ Note: This can be applied to quantitative or qualitative observations."> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + @@ -39392,40 +42449,116 @@ Note: This can be applied to quantitative or qualitative observations."> - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -39436,14 +42569,14 @@ Note: This can be applied to quantitative or qualitative observations."> - + - + - - + + @@ -39453,182 +42586,23 @@ Note: This can be applied to quantitative or qualitative observations."> - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -39639,24 +42613,25 @@ Note: This can be applied to quantitative or qualitative observations."> - + + - + - + - + @@ -39667,14 +42642,14 @@ Note: This can be applied to quantitative or qualitative observations."> - + - + - - + + @@ -39684,636 +42659,18 @@ Note: This can be applied to quantitative or qualitative observations."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -40321,189 +42678,19 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -40511,622 +42698,77 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + - + - + @@ -41137,14 +42779,14 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - + - + - - + + @@ -41154,72 +42796,197 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + - + - - + + + + + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + - + - + - - - - - - - - - + - + @@ -41230,14 +42997,14 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - + - + - - + + @@ -41247,140 +43014,7 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -41396,277 +43030,571 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - + - + - - + + + + + + + + + + - + - + - + - - + + + + + + + + + + - + - + - + - - + + + + + + + + + + - + - + - + - - + + + + + + + + + + - + - + - + - - + + - + - + - + - - + + - + - - - - - + + - + + + + + + + + + - + - + - - + + - + - + - + - - + + - + - + - + - - + + - + - - - - - - - - - - - - - - - - + - + - - + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -41677,1673 +43605,69 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + @@ -43354,14 +43678,14 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - + - + - - + + @@ -43371,139 +43695,7 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -43518,39 +43710,43 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - - + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - + + - + @@ -43558,32 +43754,76 @@ In other words, UNICODE UTF-8 can only be specified as a single value in MSH-18 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + + - + @@ -43591,31 +43831,27 @@ This is not for temporary names assigned at birth while a newborn is not yet nam - + + + + + + + + + - - - - - - - - - - - - - - + + - + @@ -43623,31 +43859,228 @@ This is not for temporary names assigned at birth while a newborn is not yet nam - + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -43655,31 +44088,19 @@ This is not for temporary names assigned at birth while a newborn is not yet nam - + - - - - - - - - - - - - - - + + - + @@ -43687,51 +44108,19 @@ This is not for temporary names assigned at birth while a newborn is not yet nam - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -43739,33 +44128,19 @@ This is not for temporary names assigned at birth while a newborn is not yet nam - + - - - - - - - - - - - - - + - + @@ -43773,247 +44148,19 @@ An example of use is where a person with multiple proper names (i.e. married) us - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -44021,215 +44168,19 @@ Includes John or Jane Doe situations"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -44237,17 +44188,17 @@ Retained for backwards compatibility only as of v2.7. Use "L" instead - + - + - + @@ -44258,14 +44209,14 @@ Retained for backwards compatibility only as of v2.7. Use "L" instead - + - + - - + + @@ -44275,155 +44226,57 @@ Retained for backwards compatibility only as of v2.7. Use "L" instead - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - + - + - + - - + + - + @@ -44431,83 +44284,32 @@ Retained for backwards compatibility only as of v2.7. Use "L" instead - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - - - - - - - - - - - - - + + - + @@ -44515,137 +44317,44 @@ Retained for backwards compatibility only as of v2.7. Use "L" instead - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + - - - - - - - - - - - - - - - - - + + - + @@ -44653,1309 +44362,92 @@ Retained for backwards compatibility only as of v2.7. Use "L" instead - + - + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -45963,19 +44455,31 @@ Use Case: A nurse practitioner has authorization to furnish or prescribe pharmac - + - - + + + + + + + + + + + + + + - + @@ -45983,135 +44487,65 @@ Use Case: A nurse practitioner has authorization to furnish or prescribe pharmac - - - - - - - - - - - - - - - - - - - - - + - + - + - - + + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -46119,31 +44553,57 @@ Use Case: A nurse practitioner has authorization to furnish or prescribe pharmac - + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -46151,19 +44611,31 @@ Use Case: A nurse practitioner has authorization to furnish or prescribe pharmac - + - - + + + + + + + + + + + + + + - + @@ -46171,369 +44643,116 @@ Use Case: A nurse practitioner has authorization to furnish or prescribe pharmac - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -46541,164 +44760,36 @@ Use Case: Person is covered by an insurance policy. This person may or may not b - + + + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -46706,56 +44797,31 @@ Use Case: These license numbers are sometimes used as identifiers. In some state - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -46763,312 +44829,244 @@ Use Case: An ancillary system that does not normally assign medical record numbe - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -47076,127 +45074,125 @@ In the US, the Assigning Authority for this value is typically CMS, but it may b - + - + - + - - + + - + - + - + - - + + - + + + + + + + + + + + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -47204,35 +45200,58 @@ In the US, the Assigning Authority for this value is typically CMS, but it may b - + - - - - - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -47240,79 +45259,93 @@ In the US, the Assigning Authority for this value is typically CMS, but it may b - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -47320,56 +45353,50 @@ In the US, the Assigning Authority for this value is typically CMS, but it may b - - - - - - - - - - - - - + - + - + - - - - - - - - - - - - - - + + - + @@ -47377,116 +45404,85 @@ Use case: This allows PRN to represent either an individual (a nurse) or a group - - - - - - - - - - - - - + - + - + - - + + + + + + + + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -47494,165 +45490,183 @@ Use Case: An identifier type is needed to accommodate what are commonly known as - - - - - - - - - - - - - + - + - + - - + + + + + + + + + + - + - - - - - + - + - - + + - + - + - - - - - + - + - + - + + + + + + + + + - + - - - - - - + + - + - + - - - - - - - - - - - - - + + + + + + + + + - + + + + + + + + + + + + + - + - + @@ -47660,368 +45674,396 @@ Use Case: A person is the subscriber of an insurance policy. The person’s fami - + - - - - - - - - - - - - - - - - - - - - - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -48032,14 +46074,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -48049,38 +46091,18 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - + - + @@ -48088,19 +46110,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - + + - + @@ -48108,676 +46130,77 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - - - - - + - + - + @@ -48788,14 +46211,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -48805,2780 +46228,38 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -51586,5822 +46267,11 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -57409,7 +46279,7 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + @@ -57421,15 +46291,15 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - + + - + @@ -57437,19 +46307,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - + + - + @@ -57457,19 +46327,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - + + - + @@ -57477,17 +46347,57 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -57498,14 +46408,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -57515,851 +46425,18 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -58367,19 +46444,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - + @@ -58387,735 +46464,804 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -59125,26 +47271,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - - - - + - + @@ -59155,14 +47289,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -59172,78 +47306,30 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -59259,67 +47345,49 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - + + - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - + + + + + + + - + - - + + @@ -59329,212 +47397,30 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -59542,19 +47428,123 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -59562,19 +47552,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - + + - + @@ -59582,19 +47572,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - + @@ -59602,7 +47592,7 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + @@ -59625,6 +47615,54 @@ An identifier for a provider within the CMS/Medicare program. A globally unique + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -59649,10 +47687,10 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + @@ -59663,14 +47701,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -59680,7 +47718,397 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -59702,18 +48130,6 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - - - @@ -59738,10 +48154,10 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + @@ -59752,14 +48168,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -59769,393 +48185,18 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -60163,19 +48204,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - + @@ -60183,19 +48224,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - + @@ -60203,47 +48244,7 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -60255,7 +48256,7 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + @@ -60268,14 +48269,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + @@ -60283,117 +48284,17 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -60404,14 +48305,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -60421,7 +48322,176 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -60436,375 +48506,27 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -60812,39 +48534,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - + + - + @@ -60852,239 +48554,127 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -61092,99 +48682,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -61192,4352 +48702,12 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -65548,23 +48718,123 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -65572,1794 +48842,71 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - + + - + - - - - - - - - - - + + - + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + - - - - + - + - - + + @@ -67369,3128 +48916,52 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - + + - + - + - + @@ -70501,14 +48972,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -70518,1368 +48989,156 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + + + + + + + + + - + - - - - - - - - - + - + - + - - - - - - - - - - - - - + - - + + - + - + - - - - - - - - - - - - - + - - + + - + - + - - - - - - - - - - - - - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + - + @@ -71890,14 +49149,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -71907,2410 +49166,11 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -74325,27 +49185,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - + + - + @@ -74353,27 +49205,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - + + - + @@ -74381,27 +49225,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - + + - + @@ -74409,27 +49245,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - + + - + @@ -74437,27 +49265,19 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - + + - + @@ -74465,53 +49285,17 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -74522,14 +49306,14 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - + - - + + @@ -74539,95 +49323,447 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -74638,5157 +49774,31 @@ An identifier for a provider within the CMS/Medicare program. A globally unique - - + + - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -79796,337 +49806,17 @@ For example, under the tenets of certain privacy regulations, it is exclusive to - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -80137,14 +49827,14 @@ For example, under the tenets of certain privacy regulations, it is exclusive to - + - + - - + + @@ -80154,121 +49844,7 @@ For example, under the tenets of certain privacy regulations, it is exclusive to - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -80283,43 +49859,1108 @@ For example, under the tenets of certain privacy regulations, it is exclusive to - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -80329,451 +50970,14 @@ For example, under the tenets of certain privacy regulations, it is exclusive to - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -80784,158 +50988,14 @@ For example, under the tenets of certain privacy regulations, it is exclusive to - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + @@ -80945,1933 +51005,18 @@ For example, under the tenets of certain privacy regulations, it is exclusive to - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -82879,19 +51024,19 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - + @@ -82899,19 +51044,19 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - + @@ -82919,19 +51064,19 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - + @@ -82939,7 +51084,727 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -86387,6 +55252,1908 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -87399,10 +58166,10 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + @@ -87413,14 +58180,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -87430,232 +58197,54 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + - + - + @@ -87663,19 +58252,180 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -87683,17 +58433,515 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -87704,14 +58952,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -87721,10 +58969,42 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -87732,7 +59012,7 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + @@ -87744,15 +59024,15 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - - + + - + @@ -87760,19 +59040,31 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + + + + + + + + + + + + + - + @@ -87780,12 +59072,193 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -87800,19 +59273,19 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + @@ -87820,19 +59293,19 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + @@ -87840,17 +59313,2742 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -87861,14 +62059,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -87878,18 +62076,18 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + @@ -87897,37 +62095,1312 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + - + - + - + @@ -87938,14 +63411,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -87955,30 +63428,54 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + @@ -87997,10 +63494,10 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + @@ -88011,14 +63508,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -88028,59 +63525,64 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + + + + + + + + + - - + + + + + + + + + + - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + @@ -88091,14 +63593,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -88108,40 +63610,399 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -88152,14 +64013,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -88169,172 +64030,4206 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + - - + + - + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - + + - + - - + + - + - - + + - + - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -88345,14 +68240,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -88362,56 +68257,76 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + - + - - - - - - + + - + - + - - + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -88422,14 +68337,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -88439,50 +68354,14039 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -88596,51 +82500,6 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -89463,10 +83322,10 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + @@ -89477,14 +83336,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -89494,169 +83353,40 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + @@ -89667,14 +83397,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -89684,53 +83414,172 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + - - + + + + + + + + + + - - - - - + + + + + + + + + + - - + + + + + + + + + + - - + + + + + + + + + + - - + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -89741,14 +83590,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -89758,52 +83607,56 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - - - - + + + + + + + + + + - - - - - + + - - + + + + + + + + + + - - - - - - - - - - - - - - - - + + + + + + + + + + - + - + @@ -89814,14 +83667,14 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - + - - + + @@ -89831,757 +83684,314 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - + - - + + - + - - + + - + - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - + - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - + - - + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -91592,2024 +85002,6 @@ Codes P, F, and S identify sets (batteries) and should be associated with an OM5 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -99638,10 +91030,10 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - + @@ -99652,17 +91044,14 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - + - + - - + + @@ -99672,164 +91061,7 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -99844,23 +91076,15 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - + + - - - - - - - - - + @@ -99868,27 +91092,55 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -99896,1343 +91148,19 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -101244,219 +91172,21 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + - + @@ -101467,14 +91197,14 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - + - - - + + + @@ -101484,18 +91214,1059 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -101503,47 +92274,1581 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + - + - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -104478,91 +96783,6 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -104632,333 +96852,6 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -105077,299 +96970,6 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -105571,103 +97171,6 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -105714,10 +97217,10 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - + @@ -105728,14 +97231,14 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - + - - + + @@ -105745,56 +97248,148 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - - - - - - - - - - + + - + - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -105805,14 +97400,14 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - + - - + + @@ -105822,79 +97417,34 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - + + + + + + + + + + + + - - - - - - - - @@ -105905,2525 +97455,149 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + - + - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - + @@ -108434,14 +97608,14 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - + - - + + @@ -108451,345 +97625,40 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -108800,14 +97669,14 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - + - - + + @@ -108817,63 +97686,700 @@ Refer to Chapter 12 Patient Care for complete discussion."> - + - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - + + - - - - - - - - - - + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -109097,1167 +98603,6 @@ Refer to Chapter 12 Patient Care for complete discussion."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -115792,123 +104137,6 @@ http://www.x12.org"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -116006,251 +104234,6 @@ http://www.x12.org"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -116313,10 +104296,10 @@ http://www.x12.org"> - + - + @@ -116327,14 +104310,14 @@ http://www.x12.org"> - + - + - - + + @@ -116344,196 +104327,40 @@ http://www.x12.org"> - + - - - - - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -116544,14 +104371,14 @@ http://www.x12.org"> - + - + - - + + @@ -116561,179 +104388,499 @@ http://www.x12.org"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -116741,57 +104888,1355 @@ http://www.x12.org"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - + + + + + - + - + @@ -116802,14 +106247,14 @@ http://www.x12.org"> - + - + - - + + @@ -116819,148 +106264,52 @@ http://www.x12.org"> - + - - + + - + - - + + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -116971,14 +106320,14 @@ http://www.x12.org"> - + - + - - + + @@ -116988,698 +106337,76 @@ http://www.x12.org"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - + - - + + - + - - + + + + + + - + - - + + + + + + - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -117693,40 +106420,61 @@ http://www.x12.org"> - - + + + + + + + + + + - - + + + + + + + + + + - - + + + + + + + + + + - - - - - - - - - - - - - + + + + + + + + + + - + - + @@ -117737,14 +106485,14 @@ http://www.x12.org"> - + - + - - + + @@ -117754,18 +106502,18 @@ http://www.x12.org"> - + - - + + - + @@ -117773,19 +106521,19 @@ http://www.x12.org"> - + - - + + - + @@ -117793,19 +106541,19 @@ http://www.x12.org"> - + - - + + - + @@ -117813,19 +106561,19 @@ http://www.x12.org"> - + - - + + - + @@ -117833,19 +106581,19 @@ http://www.x12.org"> - + - - + + - + @@ -117853,533 +106601,57 @@ http://www.x12.org"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + - + - + @@ -118390,14 +106662,14 @@ http://www.x12.org"> - + - + - - + + @@ -118407,18 +106679,18 @@ http://www.x12.org"> - + - - + + - + @@ -118426,43 +106698,19 @@ http://www.x12.org"> - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -118470,19 +106718,19 @@ http://www.x12.org"> - + - - + + - + @@ -118490,70 +106738,97 @@ http://www.x12.org"> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -118564,14 +106839,14 @@ http://www.x12.org"> - + - + - - + + @@ -118581,18 +106856,18 @@ http://www.x12.org"> - + - - + + - + @@ -118600,19 +106875,19 @@ http://www.x12.org"> - + - - + + - + @@ -118620,17 +106895,89 @@ http://www.x12.org"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -118641,14 +106988,14 @@ http://www.x12.org"> - + - + - - + + @@ -118658,18 +107005,18 @@ http://www.x12.org"> - + - - + + - + @@ -118677,23 +107024,644 @@ http://www.x12.org"> - + - - + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -118701,17 +107669,41 @@ http://www.x12.org"> - + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -118722,14 +107714,14 @@ http://www.x12.org"> - + - + - - + + @@ -118739,190 +107731,7 @@ http://www.x12.org"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -118937,1045 +107746,1955 @@ http://www.x12.org"> - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - + - + - + - - + + - + - + - + - - + + - + - - - - - - - - - - + - - + + - + - - - - - - - - - - + - - + + - + - + - + - - + + - + - + - + - - + + - + - + - + - - + + - + - - - - - - - - - - + - - + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + - + - + - + - - - - - - - - - + + - + - + - + - - + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + + + + + + + + + - + + + + + + + + + + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + + + + + + + + + + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + + + + + + + + + + - - + + + + + + + + + + - + - - + + + + + + + + + + - + - - + + + + + + + + + + - + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -119986,14 +109705,14 @@ E.g. Use in Care Plans,"> - + - + - - + + @@ -120003,31 +109722,8101 @@ E.g. Use in Care Plans,"> - + - - + + - - + + - - + + + + + + - + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -120417,59 +118206,6 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -120552,10 +118288,10 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + @@ -120566,14 +118302,14 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + - - + + @@ -120583,52 +118319,93 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - - - - - - - - - - + + + + + - - - - - - - - - - + + + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -120639,14 +118416,14 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + - - + + @@ -120656,565 +118433,40 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - + - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - + + - + - + @@ -121225,14 +118477,14 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + - - + + @@ -121242,28 +118494,450 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + + + + - + + + + + + + + - + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -121777,10 +119451,10 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + @@ -121791,14 +119465,14 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + - - + + @@ -121808,36 +119482,46 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - - + + - - + + + + + - - + + + + + - - + + - - + + + + + + - + - + @@ -121848,14 +119532,14 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + - - + + @@ -121865,28 +119549,153 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - - + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + - + - + @@ -121897,14 +119706,14 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - + - - + + @@ -121914,569 +119723,555 @@ For example, Decadron 0.5 mg is often ordered this way. The order would look li - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - + + - - - - - - - - - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -124338,164 +122133,6 @@ In worker’s compensation cases, the Employer may be the “organization” res - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -124806,10 +122443,10 @@ In worker’s compensation cases, the Employer may be the “organization” res - + - + @@ -124820,14 +122457,14 @@ In worker’s compensation cases, the Employer may be the “organization” res - + - + - - + + @@ -124837,444 +122474,148 @@ In worker’s compensation cases, the Employer may be the “organization” res - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -125285,14 +122626,14 @@ In worker’s compensation cases, the Employer may be the “organization” res - + - + - - + + @@ -125302,413 +122643,3299 @@ In worker’s compensation cases, the Employer may be the “organization” res - + - - + + - - - - - - - - - - + + + + + - - - - - - - - - - + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + + + - + - - - - - - - - - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - + + - + - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + + + + + - + - - - - - - - - - - + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -125719,14 +125946,14 @@ In worker’s compensation cases, the Employer may be the “organization” res - + - + - - + + @@ -125736,294 +125963,169 @@ In worker’s compensation cases, the Employer may be the “organization” res - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -126031,9 +126133,210 @@ In worker’s compensation cases, the Employer may be the “organization” res - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -126729,287 +127032,6 @@ Note: Do not use NA if result code status is not corrected (revised) or if a pr - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -127623,10 +127645,10 @@ Note: Do not use NA if result code status is not corrected (revised) or if a pr - + - + @@ -127637,14 +127659,14 @@ Note: Do not use NA if result code status is not corrected (revised) or if a pr - + - + - - + + @@ -127654,68 +127676,71 @@ Note: Do not use NA if result code status is not corrected (revised) or if a pr - + - - + + - - + + - - + + - - + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + - + - + @@ -127726,14 +127751,14 @@ Note: Do not use NA if result code status is not corrected (revised) or if a pr - + - + - - + + @@ -127743,180 +127768,155 @@ Note: Do not use NA if result code status is not corrected (revised) or if a pr - + - - + + + + + + + + + + + + + + + + + + + + + + - + - - + + - - + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + diff --git a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v3-codesystems.xml b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v3-codesystems.xml index d3beda92c04..95e0c14f0cb 100644 --- a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v3-codesystems.xml +++ b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/v3-codesystems.xml @@ -1,14 +1,14 @@ - + - + - + @@ -22,10 +22,14 @@ - + + + + + - - + + @@ -36,22 +40,21 @@ - + - + - + - + @@ -65,14 +68,10 @@ Description does not make sense relative to name of coding system. Must be revi - - - - - + - - + + @@ -83,68 +82,22 @@ Description does not make sense relative to name of coding system. Must be revi - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -158,10 +111,14 @@ Description does not make sense relative to name of coding system. Must be revi - + + + + + - - + + @@ -172,21 +129,23 @@ Description does not make sense relative to name of coding system. Must be revi - + - + - + - + @@ -200,14 +159,14 @@ Description does not make sense relative to name of coding system. Must be revi - + - + - - + + @@ -218,21 +177,22 @@ Description does not make sense relative to name of coding system. Must be revi - + - + - + - + @@ -246,443 +206,14 @@ Description does not make sense relative to name of coding system. Must be revi - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -697,7 +228,7 @@ This is the healthcare analog to the US Intelligence Community's concept of a Sp - + @@ -747,10 +278,10 @@ The kind of Act (e.g. physical examination, serum potassium, inpatient encounter - + - + @@ -764,14 +295,10 @@ The kind of Act (e.g. physical examination, serum potassium, inpatient encounter - - - - - + - - + + @@ -782,146 +309,11 @@ The kind of Act (e.g. physical examination, serum potassium, inpatient encounter - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -974,262 +366,10 @@ Indicates whether the name part is a given name, family name, prefix, suffix, et - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1243,14 +383,14 @@ Structurally, many observations are name-value-pairs, where the Observation.code - + - + - - + + @@ -1261,23 +401,23 @@ Structurally, many observations are name-value-pairs, where the Observation.code - + - + - + - + - + @@ -1286,67 +426,13 @@ Structurally, many observations are name-value-pairs, where the Observation.code - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + @@ -1357,42 +443,38 @@ Structurally, many observations are name-value-pairs, where the Observation.code - + - + - + - + - + - + - - - - - + - - + + @@ -1403,319 +485,22 @@ Structurally, many observations are name-value-pairs, where the Observation.code - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1729,10 +514,332 @@ Per OASIS XACML, an obligation is an operation specified in a policy or policy t - + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1744,11 +851,147 @@ Per OASIS XACML, an obligation is an operation specified in a policy or policy t +Missing Description"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1809,6 +1052,182 @@ Missing description."> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1856,113 +1275,10 @@ Missing description."> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -1976,10 +1292,14 @@ Missing description."> - + + + + + - - + + @@ -1990,22 +1310,21 @@ Missing description."> - + - + - + - + @@ -2019,14 +1338,60 @@ Codes for HL7 publishing sections (major business categories)"> - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2041,64 +1406,17 @@ Codes for HL7 publishing sections (major business categories)"> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -2112,14 +1430,10 @@ Codes for HL7 publishing sections (major business categories)"> - - - - - + - - + + @@ -2130,21 +1444,21 @@ Codes for HL7 publishing sections (major business categories)"> - + - + - + - + @@ -2158,14 +1472,102 @@ Codes for HL7 publishing sections (major business categories)"> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2177,113 +1579,21 @@ Codes for HL7 publishing sections (major business categories)"> +Identifies the order in which content should be processed."> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -2297,14 +1607,56 @@ Code that specifies whether an address part names the street, city, country, pos - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -2319,701 +1671,7 @@ Code that specifies whether an address part names the street, city, country, pos - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -3062,10 +1720,10 @@ A textual value may be specified as the print name, or for non-coded messages, a - + - + @@ -3079,14 +1737,14 @@ A textual value may be specified as the print name, or for non-coded messages, a - + - + - - + + @@ -3097,619 +1755,11 @@ A textual value may be specified as the print name, or for non-coded messages, a - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -3762,63 +1812,10 @@ Concepts that define the telecommunication capabilities of a particular device. - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -3832,14 +1829,10 @@ Concepts that define the telecommunication capabilities of a particular device. - - - - - + - - + + @@ -3850,23 +1843,23 @@ Concepts that define the telecommunication capabilities of a particular device. - + - + - + - + - + @@ -3875,33 +1868,1424 @@ Concepts that define the telecommunication capabilities of a particular device. - + + + + - + - - - + + + - + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -3994,10 +3378,10 @@ Based on concepts for resolutions from HL7 ballot spreadsheet according to HL7's - + - + @@ -4011,14 +3395,14 @@ Based on concepts for resolutions from HL7 ballot spreadsheet according to HL7's - + - + - - + + @@ -4029,22 +3413,21 @@ Based on concepts for resolutions from HL7 ballot spreadsheet according to HL7's - + - + - + - + @@ -4058,10 +3441,14 @@ A set of codes advising a system or user which name in a set of names to select - + + + + + - - + + @@ -4072,2233 +3459,16 @@ A set of codes advising a system or user which name in a set of names to select - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -6347,10 +3517,10 @@ Codes to specify the scope in which the identifier applies to the object with wh - + - + @@ -6364,158 +3534,14 @@ Codes to specify the scope in which the identifier applies to the object with wh - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + @@ -6530,17 +3556,17 @@ A task or action that a user may perform in a clinical information system."> - + - + - + @@ -6554,14 +3580,14 @@ A task or action that a user may perform in a clinical information system."> - + - + - - + + @@ -6572,1532 +3598,13 @@ A task or action that a user may perform in a clinical information system."> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -8151,6 +3658,597 @@ Description copied from Concept Domain of same name. Must be verified."> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8195,10 +4293,10 @@ Missing description."> - + - + @@ -8212,14 +4310,152 @@ Missing description."> - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8234,64 +4470,17 @@ Missing description."> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -8305,14 +4494,148 @@ Missing description."> - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8327,7 +4650,591 @@ Missing description."> - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8379,6 +5286,636 @@ Missing description."> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -8425,13 +5962,572 @@ Missing description."> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -8489,12 +6585,12 @@ Missing description."> - + - + - + @@ -8503,301 +6599,14 @@ Missing description."> - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + @@ -8807,15 +6616,15 @@ Missing description."> - + - + - + @@ -8823,12 +6632,12 @@ Missing description."> - + - + - + @@ -8837,107 +6646,14 @@ Missing description."> - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + @@ -8947,164 +6663,21 @@ Needs description"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + @@ -9112,31 +6685,28 @@ The type of consent directive, e.g., to consent or dissent to collect, access, o - + - + - + - + - + - - - - + - + - - + + @@ -9146,15 +6716,15 @@ The type of consent directive, e.g., to consent or dissent to collect, access, o - - + + - + - + @@ -9167,7 +6737,7 @@ The type of consent directive, e.g., to consent or dissent to collect, access, o - + @@ -9208,13 +6778,107 @@ The type of consent directive, e.g., to consent or dissent to collect, access, o + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -9256,12 +6920,12 @@ The type of consent directive, e.g., to consent or dissent to collect, access, o - + - + - + @@ -9270,62 +6934,14 @@ The type of consent directive, e.g., to consent or dissent to collect, access, o - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - + + @@ -9335,109 +6951,15 @@ Description copied from Concept Domain of same name. Must be verified. Note th - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -9450,7 +6972,7 @@ encrypt prohibit redisclosure without consent directive"> - + @@ -9498,12 +7020,12 @@ encrypt prohibit redisclosure without consent directive"> - + - + - + @@ -9512,44 +7034,93 @@ encrypt prohibit redisclosure without consent directive"> - - - - + - + - - - + + + - - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + @@ -9558,45 +7129,2711 @@ encrypt prohibit redisclosure without consent directive"> - - - - + - + - - - + + + - - + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -9651,12 +9888,12 @@ This code system contains all HL7 artifacts of type TE (Trigger Event) that are - + - + - + @@ -9665,40 +9902,55 @@ This code system contains all HL7 artifacts of type TE (Trigger Event) that are - - - - - - - + + + + + + + + - - + - + - - + + - + + + + + + + + + + + + + + + + - + - + - + @@ -9707,45 +9959,43 @@ This code system contains all HL7 artifacts of type TE (Trigger Event) that are - - - - + - + - - - + + + - - + - + - - + + - + + + + - + - + - + @@ -9754,46 +10004,51 @@ Missing Description"> - - - - + - + - - + + - - + - + - - + + - + + + + + + + + + + + + - + - + - + @@ -9802,1834 +10057,44 @@ Description copied from Concept Domain of same name. Must be verified."> - - - - + + + + + - - + + - - + - + - - + + - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -11701,10 +10166,10 @@ A code specifying the meaning and purpose of every TransmissionRelationship inst - + - + @@ -11714,14 +10179,14 @@ A code specifying the meaning and purpose of every TransmissionRelationship inst - + - + - - + + @@ -11732,9 +10197,10 @@ A code specifying the meaning and purpose of every TransmissionRelationship inst - + - + @@ -11743,6 +10209,192 @@ A code specifying the meaning and purpose of every TransmissionRelationship inst + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11750,5527 +10402,123 @@ A code specifying the meaning and purpose of every TransmissionRelationship inst - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -18718,11508 +11966,6 @@ Codes for concepts describing the approval level of HL7 artifacts. This code sy - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - @@ -38350,6 +20096,3860 @@ the measure population as a narrative description (e.g., all patients seen in th + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -38675,10 +24275,10 @@ the measure population as a narrative description (e.g., all patients seen in th - + - + @@ -38688,14 +24288,14 @@ the measure population as a narrative description (e.g., all patients seen in th - + - + - - + + @@ -38706,262 +24306,60 @@ the measure population as a narrative description (e.g., all patients seen in th - + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -39018,10 +24416,10 @@ Missing Description"> - + - + @@ -39031,14 +24429,14 @@ Missing Description"> - + - + - - + + @@ -39049,64 +24447,10 @@ Missing Description"> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -39122,124 +24466,146 @@ Missing Description"> - - - + + + Usage Note: ActPrivacyLaw codes may be associated with an Act or a Role to indicate the legal provision to which the assignment of an Act.confidentialityCode or Role.confidentialtyCode complies. May be used to further specify rationale for assignment of other ActPrivacyPolicy codes in the US realm, e.g., ETH and 42CFRPart2 can be differentiated from ETH and Title38Part1."> + + + + + + + + - - - - - - - - - - - - - - - - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + - + @@ -39249,2354 +24615,14 @@ Missing Description"> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -41608,278 +24634,243 @@ Description copied from Concept Domain of same name. Must be verified. Note th +Code that specifies whether an address part names the street, city, country, postal code, post box, etc. Discussion: The hierarchical nature of these concepts shows composition. E.g. "Street Name" is part of "Street Address Line""> - + - - - - - - - - - + + + - - - + + + - - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - + + + - - - + + + - - + + + + + + + - - + + + + + + + - - + + - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + @@ -41889,14 +24880,14 @@ In spite of the inability of tooling to process codes longer than 2 characters, - + - + - - + + @@ -41907,31 +24898,241 @@ In spite of the inability of tooling to process codes longer than 2 characters, - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + @@ -43641,6 +26842,25450 @@ In spite of the inability of tooling to process codes longer than 2 characters, + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -47080,10 +55725,10 @@ In spite of the inability of tooling to process codes longer than 2 characters, - + - + @@ -47093,14 +55738,14 @@ In spite of the inability of tooling to process codes longer than 2 characters, - + - + - - + + @@ -47111,3046 +55756,34 @@ In spite of the inability of tooling to process codes longer than 2 characters, - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - - - - - - - - - - + + - - - - - - - - - - - - + + - + - + @@ -50160,14 +55793,14 @@ A set of codes advising a system or user which name in a set of names to select - + - + - - + + @@ -50180,32 +55813,57 @@ A set of codes advising a system or user which name in a set of names to select - + + + + + + + - - - + + + + + + + + + + + + + + + + + - - - + + + - - - + + + + + + + + - + - + @@ -50215,14 +55873,14 @@ A set of codes advising a system or user which name in a set of names to select - + - + - - + + @@ -50233,9 +55891,1349 @@ A set of codes advising a system or user which name in a set of names to select - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -50244,18 +57242,33 @@ A set of codes advising a system or user which name in a set of names to select - - - + + + + + + + + + + + + + + + + + + - + - + @@ -50265,14 +57278,14 @@ A set of codes advising a system or user which name in a set of names to select - + - + - - + + @@ -50283,250 +57296,49 @@ A set of codes advising a system or user which name in a set of names to select - + - + - - - - - - - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - + @@ -50536,14 +57348,14 @@ It appears that the printnames are suboptimal and should be improved for many of - + - + - - + + @@ -50555,42 +57367,44 @@ It appears that the printnames are suboptimal and should be improved for many of +Concepts that define the telecommunication capabilities of a particular device. Used to identify the expected capabilities to be found at a particular telecommunication address."> - + - - - + + + - - - + + + - - - + + + - - - + + + + + + + + - + - + @@ -50600,14 +57414,14 @@ Indicates whether the name part is a given name, family name, prefix, suffix, et - + - + - - + + @@ -50620,501 +57434,116 @@ Indicates whether the name part is a given name, family name, prefix, suffix, et - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - + + + - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + Take basal body temperature on waking in establishing date of ovulation"> - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -51124,14 +57553,14 @@ fixing and completion of the hierarchy and proper good definitions of all the co - + - + - - + + @@ -51142,160 +57571,16 @@ fixing and completion of the hierarchy and proper good definitions of all the co - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -54195,10 +60480,10 @@ fixing and completion of the hierarchy and proper good definitions of all the co - + - + @@ -54208,14 +60493,14 @@ fixing and completion of the hierarchy and proper good definitions of all the co - + - + - - + + @@ -54227,6265 +60512,65 @@ fixing and completion of the hierarchy and proper good definitions of all the co +This code system contains all HL7 artifacts of type TE (Trigger Event) that are created by HL7 or its affiliates or their designates using the realm namespacing rules approved by HL7. Local implementations who create trigger events outside of these namespacing rules, (e.g. using the ZZ realm code) must register their own code system. The specific list of legal codes can be found by consulting the HL7 publications (editions, ballots, implementation guides, etc.) published by HL7 Inc. and by the various HL7 affiliates and their designates. Codes shall be expressed in upper case, with separator as shown in HL7 publications with no version id. E.g. PORX_TE123456UV."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -60731,10 +60816,10 @@ Information for which the patient seeks heightened confidentiality. Sensitive in - + - + @@ -60744,14 +60829,14 @@ Information for which the patient seeks heightened confidentiality. Sensitive in - + - + - - + + @@ -60762,140 +60847,55 @@ Information for which the patient seeks heightened confidentiality. Sensitive in - + - + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + diff --git a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/valuesets.xml b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/valuesets.xml index 97ffd067eab..3d92fa179ca 100644 --- a/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/valuesets.xml +++ b/hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/valueset/valuesets.xml @@ -1,7 +1,7 @@ - + @@ -10,7 +10,7 @@ - + @@ -21,7 +21,7 @@ - + @@ -89,7 +89,7 @@ - + @@ -255,7 +255,7 @@ - + @@ -738,13 +738,13 @@ - + - + @@ -788,13 +788,13 @@ - + - + @@ -839,24 +839,1796 @@ - + - + - + + - + + + + + + + + + + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -868,40 +2640,6172 @@ - + - + - - - + + + - - - + + + - - - + + + - - - + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -912,17 +8816,388 @@ - + - + - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -934,24 +9209,10379 @@ - + - + - - - + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -962,7 +19592,7 @@ - + @@ -978,12 +19608,12 @@ - + - + @@ -1123,249 +19753,157 @@ - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -1377,34 +19915,90 @@ - + - + - - - + + + - - - + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + @@ -1415,7 +20009,7 @@ - + @@ -1432,7 +20026,7 @@ - + @@ -1487,625 +20081,12 @@ - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -2119,288 +20100,180 @@ - + - + - - - + + + - - + + + + + + + + + + + + + - + - - - + + + - - - + + + + + + - - - + + + + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - - + + + - + @@ -2412,204 +20285,66 @@ - + - + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - - - - - - + - + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - - + + + - + @@ -2621,1142 +20356,74 @@ - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - - - + + + - - + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -3764,102 +20431,83 @@ - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + + + + + + - - + - + - - - + + + - - - + + + + + + + + + + + + + - + - + - + - + - + - + - + - - - + + + - + @@ -3871,174 +20519,39 @@ - + - + - - - + + + - - - + + + - - - - - - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -4046,51 +20559,168 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - + - - + - - + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + @@ -4098,17 +20728,17 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - + @@ -4120,60 +20750,739 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4187,17 +21496,17 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - + @@ -4209,105 +21518,54 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + + + + - + - - - - + + + + - + @@ -4319,30 +21577,246 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4354,177 +21828,14 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -4534,91 +21845,199 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - - + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -4629,7 +22048,7 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + @@ -4646,7 +22065,7 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + @@ -7645,13 +25064,4733 @@ Future versions of FHIR may make significant changes to Trial Use content that a + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -7667,12 +29806,12 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + @@ -7712,64 +29851,12 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -7781,14 +29868,14 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + @@ -7798,25 +29885,6966 @@ Future versions of FHIR may make significant changes to Trial Use content that a - - + + + + + + + + - + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -7827,7 +36855,7 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + @@ -7843,12 +36871,12 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + @@ -7928,32 +36956,24 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - + - - - - - - - - - - + - + - - - + + + + @@ -7965,2585 +36985,2864 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -10554,7 +39853,7 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + @@ -10570,12 +39869,12 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + @@ -10650,76 +39949,33 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - + - + - + - + - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -10731,145 +39987,35 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + + + + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -10880,17 +40026,17 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - + @@ -10902,69 +40048,178 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - + + + + + + + + + + + + + - - + + - + - + - + - + - - - - + - + - + - + - - - - + + + + - + @@ -10976,45 +40231,69 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + - + - + - + - + + + + + + + + + + - + - - - + + + @@ -11024,155 +40303,136 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - - + + - - - - - - - + + - - - - - - - + + - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - + - - - + + + - - + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - - - - - - - - - - - - - - + + + - - - + + + + + + + + - + - + - + - + @@ -11180,48 +40440,981 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - + - - + - + - - - + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11233,14 +41426,14 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + @@ -11250,47 +41443,202 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + + - + + + + + + + + + + - + - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11302,39 +41650,262 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - + - + - - - + + + + + + + + - + - + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11342,63 +41913,68 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - + + + + + + - + - + - - - + + + - + - + - + - + - + - + - + - - - + + + - + @@ -11410,52 +41986,66 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + - - - + + + - - - + + + + + + + + - + - + - + - + + + + + + + + + + - + - - - + + + - + @@ -11467,25 +42057,106 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + + + + + + + + + + + + + + + + - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -11494,19 +42165,19 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - + - - - + + + - + @@ -11518,1794 +42189,34 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + - - - + + + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -13316,7 +42227,7 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + @@ -13334,12 +42245,12 @@ Future versions of FHIR may make significant changes to Trial Use content that a - + - + @@ -18169,1175 +47080,15 @@ The primary difference between a medicationusage and a medicationadministration - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + @@ -19348,17 +47099,16 @@ The primary difference between a medicationusage and a medicationadministration - - - - - - - - + + + + + + + - + @@ -19370,4718 +47120,49 @@ The primary difference between a medicationusage and a medicationadministration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + + + - - - - - - - - + + + - + - + - + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -24093,25 +47174,9 @@ The primary difference between a medicationusage and a medicationadministration - + - - - - - - - - - - - - - - - - @@ -24121,7 +47186,7 @@ The primary difference between a medicationusage and a medicationadministration - + @@ -24139,12 +47204,12 @@ The primary difference between a medicationusage and a medicationadministration - + - + @@ -24184,11 +47249,26 @@ The primary difference between a medicationusage and a medicationadministration + + + + + + + + + + + + + + + @@ -24219,6 +47299,11 @@ The primary difference between a medicationusage and a medicationadministration + + + + + @@ -24308,6 +47393,11 @@ The primary difference between a medicationusage and a medicationadministration + + + + + @@ -24432,6 +47522,11 @@ The primary difference between a medicationusage and a medicationadministration + + + + + @@ -24488,1747 +47583,13 @@ The primary difference between a medicationusage and a medicationadministration - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -26243,7 +47604,7 @@ or intervention but are still being followed according to the primary objective - + @@ -26341,6238 +47702,19 @@ or intervention but are still being followed according to the primary objective - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -32750,301 +47892,95 @@ A specific time might or might not be pre-allocated."> - + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -33052,4471 +47988,33 @@ A specific time might or might not be pre-allocated."> - - - - - - - - + - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -37527,7 +48025,7 @@ responding, withdrawal, non-compliance and/or adverse event."> - + @@ -37601,1658 +48099,13 @@ responding, withdrawal, non-compliance and/or adverse event."> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -39401,1673 +48254,20 @@ responding, withdrawal, non-compliance and/or adverse event."> - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + @@ -41076,4910 +48276,102 @@ responding, withdrawal, non-compliance and/or adverse event."> - + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -45990,7 +48382,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -63285,7 +65677,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -63297,7 +65689,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -63464,1347 +65856,286 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - - - - - - - - - - - + + + - + - + - + - - + - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - + + + - + + - + + + + + - + - - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + @@ -64815,19 +66146,19 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + @@ -64917,91 +66248,24 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - + - - - - - - - - - - + - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -65013,148 +66277,47 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - - - - + + - - - + + - - - + + - - - - - - - - + + - + - + - - + - - - - - - - - - - + - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -65166,64 +66329,52 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - + + + - - - + + + - - - + + + - + - + - + - - - - - - - - - - - - - + - + - - - - + + + + - + @@ -65235,54 +66386,42 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - + + + - + - + - + - - - - - - - - - - - - - + - + - - - - + + + + - + @@ -65294,997 +66433,381 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - - + + - + - + - - + - - - - + - + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - - - - - - - + - + - - - + + + - + @@ -66296,283 +66819,90 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - + + + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - - - - - - - - - - + - + - - - + + + - + - + - + - - + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + - + - + - + - - - - - - - - - - - - - + - + - - - - + + + + - + @@ -66584,56 +66914,57 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - + + + - - - + + + + + + + + + + + + + - + - + - + - - - - - - - - - - + - + - - - + + + - + @@ -66645,71 +66976,42 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - + + + - + - + - + - - - - - - - - - - + - + - - - + + + - + @@ -66721,727 +67023,52 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - + + + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - + - - + - - - - - - - - - - + - + - - - + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + @@ -67453,51 +67080,152 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - - - - - - - - - - + - + - - - + + + - + @@ -67509,423 +67237,403 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + - + - + - + - + - - - + + + - + - - + - + - - - + + + - - - + + + - - - + + + + + + + + - + - + - + - - - - - - - - - - + - + - - - + + + - + @@ -67937,71 +67645,295 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - + + + - - - - - - - - - - - - - - - - - - + + + - + - + - - + - - - - - - - - - - + - + - - - + + + + @@ -68013,6 +67945,48 @@ Spelling note: "descendant" is a more correct spelling, but the spelli + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -68023,207 +67997,258 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - - - + + + - - - + + + - - - + + + + + + + + + + + + + - + - + - - + - - - - - - - - - - + - + - - - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - + + - - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + @@ -68234,7 +68259,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -68245,7 +68270,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -68313,7 +68338,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -68324,7 +68349,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -68365,13 +68390,13 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -68406,14 +68431,14 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -68551,14 +68576,14 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -68783,7 +68808,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -68792,7 +68817,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74268,13 +74293,13 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74314,13 +74339,13 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74364,7 +74389,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74373,7 +74398,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74400,13 +74425,13 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74461,7 +74486,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74478,12 +74503,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74507,7 +74532,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74524,12 +74549,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74562,7 +74587,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74573,12 +74598,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74606,7 +74631,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74617,12 +74642,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74649,7 +74674,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74666,12 +74691,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74695,7 +74720,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74712,12 +74737,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74760,7 +74785,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74777,12 +74802,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74806,7 +74831,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74826,12 +74851,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74859,7 +74884,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74870,12 +74895,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74903,7 +74928,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74920,12 +74945,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74957,7 +74982,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -74968,12 +74993,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -74997,7 +75022,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75014,12 +75039,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75047,7 +75072,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75058,12 +75083,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75087,7 +75112,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75104,12 +75129,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75134,7 +75159,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75151,12 +75176,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75184,7 +75209,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75201,12 +75226,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75230,7 +75255,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75247,12 +75272,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75277,7 +75302,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75294,12 +75319,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75323,7 +75348,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75340,12 +75365,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75373,7 +75398,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75390,12 +75415,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75423,7 +75448,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75440,12 +75465,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75470,7 +75495,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75487,12 +75512,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75520,7 +75545,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75537,12 +75562,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75567,7 +75592,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75584,12 +75609,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75617,7 +75642,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75634,12 +75659,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75674,7 +75699,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75694,12 +75719,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75727,7 +75752,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75744,12 +75769,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75779,7 +75804,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75790,12 +75815,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75823,7 +75848,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75834,12 +75859,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75867,7 +75892,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75884,12 +75909,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75917,7 +75942,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75934,12 +75959,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -75963,7 +75988,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -75974,12 +75999,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76032,7 +76057,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76049,12 +76074,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76079,7 +76104,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76096,12 +76121,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76129,7 +76154,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76146,12 +76171,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76179,7 +76204,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76190,12 +76215,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76223,7 +76248,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76236,19 +76261,19 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + @@ -76276,7 +76301,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76293,12 +76318,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76326,7 +76351,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76343,12 +76368,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76376,7 +76401,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76393,12 +76418,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76426,7 +76451,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76443,12 +76468,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76496,7 +76521,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76513,12 +76538,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76547,7 +76572,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76564,12 +76589,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76597,7 +76622,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76614,12 +76639,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76647,7 +76672,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76664,12 +76689,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76694,7 +76719,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76711,12 +76736,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76741,7 +76766,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76758,12 +76783,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76791,7 +76816,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76808,12 +76833,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76841,7 +76866,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76858,12 +76883,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76887,7 +76912,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76898,12 +76923,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76931,7 +76956,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76948,12 +76973,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -76981,7 +77006,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -76998,12 +77023,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77027,7 +77052,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77038,12 +77063,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77071,7 +77096,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77094,12 +77119,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77127,7 +77152,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77138,12 +77163,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77170,7 +77195,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77190,12 +77215,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77223,7 +77248,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77240,12 +77265,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77270,7 +77295,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77287,12 +77312,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77317,7 +77342,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77334,12 +77359,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77364,7 +77389,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77381,12 +77406,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77414,7 +77439,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77431,12 +77456,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77464,7 +77489,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77475,12 +77500,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77508,7 +77533,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77525,12 +77550,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77558,7 +77583,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77575,12 +77600,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77604,7 +77629,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77621,12 +77646,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77670,7 +77695,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77681,12 +77706,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77711,7 +77736,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77728,12 +77753,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77761,7 +77786,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77778,12 +77803,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77812,7 +77837,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77829,12 +77854,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77859,7 +77884,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77876,12 +77901,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77909,7 +77934,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77926,12 +77951,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77959,7 +77984,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -77970,12 +77995,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -77998,7 +78023,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -78009,12 +78034,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -78042,7 +78067,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -78059,12 +78084,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -78092,7 +78117,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -78103,12 +78128,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -103740,7 +103765,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -103751,12 +103776,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -103780,7 +103805,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -103797,12 +103822,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -103830,7 +103855,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -103841,12 +103866,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -103871,7 +103896,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -103888,12 +103913,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -103918,7 +103943,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -103935,12 +103960,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -103968,7 +103993,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -103985,12 +104010,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104014,7 +104039,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104025,12 +104050,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104054,7 +104079,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104071,12 +104096,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104104,7 +104129,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104127,12 +104152,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104160,7 +104185,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104171,12 +104196,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104204,7 +104229,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104224,12 +104249,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104257,7 +104282,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104268,12 +104293,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104305,7 +104330,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104322,12 +104347,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104355,7 +104380,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104372,12 +104397,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104402,7 +104427,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104419,12 +104444,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104452,7 +104477,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104469,12 +104494,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104543,7 +104568,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104554,12 +104579,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104589,7 +104614,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104606,12 +104631,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104640,7 +104665,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104657,12 +104682,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104690,7 +104715,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104707,12 +104732,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104737,7 +104762,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104748,12 +104773,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104836,7 +104861,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104847,12 +104872,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104876,7 +104901,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104893,12 +104918,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -104926,7 +104951,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -104943,12 +104968,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105005,7 +105030,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105022,12 +105047,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105055,7 +105080,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105072,12 +105097,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105105,7 +105130,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105116,12 +105141,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105235,7 +105260,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105252,12 +105277,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105304,7 +105329,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105315,12 +105340,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105348,7 +105373,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105368,12 +105393,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105401,7 +105426,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105418,12 +105443,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105919,7 +105944,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105939,12 +105964,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -105972,7 +105997,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -105989,12 +106014,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106072,7 +106097,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106089,7 +106114,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106174,7 +106199,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106191,12 +106216,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106224,7 +106249,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106241,7 +106266,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106274,7 +106299,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106291,12 +106316,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106324,7 +106349,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106341,12 +106366,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106374,7 +106399,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106391,12 +106416,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106424,7 +106449,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106441,12 +106466,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106471,7 +106496,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106488,12 +106513,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106547,7 +106572,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106564,12 +106589,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106597,7 +106622,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106614,12 +106639,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106647,7 +106672,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106664,12 +106689,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106697,7 +106722,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106714,12 +106739,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106747,7 +106772,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106758,12 +106783,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106796,7 +106821,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106807,12 +106832,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106837,7 +106862,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106854,7 +106879,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106883,7 +106908,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106900,12 +106925,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106934,7 +106959,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106945,12 +106970,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -106978,7 +107003,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -106995,12 +107020,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107028,7 +107053,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107045,12 +107070,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107086,7 +107111,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107103,12 +107128,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107137,7 +107162,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107154,12 +107179,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107188,7 +107213,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107205,12 +107230,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107238,7 +107263,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107249,12 +107274,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107278,7 +107303,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107295,12 +107320,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107328,7 +107353,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107345,7 +107370,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107377,7 +107402,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107394,12 +107419,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107458,7 +107483,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107469,12 +107494,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107557,7 +107582,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107574,12 +107599,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107607,7 +107632,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107624,12 +107649,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107647,13 +107672,59 @@ Spelling note: "descendant" is a more correct spelling, but the spelli + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -107670,12 +107741,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107699,7 +107770,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107710,12 +107781,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107743,7 +107814,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107760,12 +107831,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107789,7 +107860,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107800,12 +107871,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107837,7 +107908,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107854,12 +107925,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107883,7 +107954,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107903,12 +107974,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107936,7 +108007,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -107956,12 +108027,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -107989,7 +108060,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108006,12 +108077,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108226,7 +108297,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108237,12 +108308,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108270,7 +108341,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108287,12 +108358,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108487,7 +108558,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108504,12 +108575,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108534,7 +108605,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108551,12 +108622,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108581,7 +108652,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108592,12 +108663,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108626,7 +108697,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108643,12 +108714,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108672,7 +108743,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108692,12 +108763,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108802,7 +108873,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108822,12 +108893,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108855,7 +108926,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108869,12 +108940,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -108950,7 +109021,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -108967,12 +109038,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109020,7 +109091,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109037,12 +109108,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109070,7 +109141,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109087,12 +109158,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109116,7 +109187,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109133,12 +109204,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109193,7 +109264,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109210,12 +109281,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109243,7 +109314,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109260,12 +109331,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109293,7 +109364,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109310,12 +109381,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109395,7 +109466,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109412,12 +109483,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109445,7 +109516,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109456,12 +109527,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109486,7 +109557,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109497,12 +109568,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109525,7 +109596,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109536,12 +109607,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109569,7 +109640,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109586,12 +109657,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109619,7 +109690,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109630,12 +109701,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109659,7 +109730,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109676,12 +109747,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109709,7 +109780,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109726,12 +109797,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109756,7 +109827,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109773,12 +109844,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109806,7 +109877,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109823,12 +109894,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109857,7 +109928,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109868,12 +109939,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109898,7 +109969,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109915,12 +109986,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109948,7 +110019,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -109959,12 +110030,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -109988,7 +110059,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110008,12 +110079,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110041,7 +110112,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110058,12 +110129,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110087,7 +110158,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110104,12 +110175,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110133,7 +110204,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110150,12 +110221,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110179,7 +110250,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110190,12 +110261,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110218,7 +110289,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110241,12 +110312,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110274,7 +110345,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110291,12 +110362,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110324,7 +110395,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110341,12 +110412,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110371,7 +110442,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110382,12 +110453,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110440,7 +110511,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110457,12 +110528,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110485,7 +110556,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110502,12 +110573,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110535,7 +110606,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110552,12 +110623,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110585,7 +110656,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110596,12 +110667,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110629,7 +110700,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110649,12 +110720,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110682,7 +110753,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110693,12 +110764,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110734,7 +110805,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110745,12 +110816,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110775,7 +110846,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110792,12 +110863,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110822,7 +110893,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110833,12 +110904,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -110861,7 +110932,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -110878,12 +110949,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111227,7 +111298,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111238,12 +111309,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111271,7 +111342,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111288,12 +111359,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111316,7 +111387,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111333,12 +111404,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111366,7 +111437,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111386,12 +111457,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111419,7 +111490,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111430,12 +111501,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111463,7 +111534,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111480,12 +111551,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111545,7 +111616,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111562,12 +111633,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111595,7 +111666,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111612,12 +111683,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111645,7 +111716,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111665,7 +111736,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111740,7 +111811,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111754,12 +111825,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111793,7 +111864,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111810,12 +111881,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111840,7 +111911,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111857,12 +111928,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -111890,7 +111961,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111907,7 +111978,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -111995,7 +112066,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112006,12 +112077,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112036,7 +112107,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112047,12 +112118,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112076,7 +112147,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112087,12 +112158,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112138,7 +112209,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112155,12 +112226,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112188,7 +112259,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112205,12 +112276,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112238,7 +112309,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112255,12 +112326,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112285,7 +112356,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112302,12 +112373,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112332,7 +112403,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112349,12 +112420,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112382,7 +112453,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112399,12 +112470,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112432,7 +112503,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112443,12 +112514,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112476,7 +112547,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112493,12 +112564,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112522,7 +112593,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112533,12 +112604,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112566,7 +112637,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112583,12 +112654,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112615,7 +112686,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112632,12 +112703,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112665,7 +112736,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112682,12 +112753,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112715,7 +112786,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112732,12 +112803,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112769,7 +112840,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112789,7 +112860,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112824,7 +112895,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112841,12 +112912,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112874,7 +112945,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112885,12 +112956,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112913,7 +112984,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112930,12 +113001,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -112960,7 +113031,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -112977,12 +113048,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113010,7 +113081,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113027,7 +113098,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113064,7 +113135,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113081,12 +113152,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113115,7 +113186,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113132,12 +113203,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113165,7 +113236,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113182,12 +113253,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113215,7 +113286,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113232,12 +113303,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113261,7 +113332,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113278,7 +113349,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113320,7 +113391,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113337,12 +113408,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113370,7 +113441,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113387,12 +113458,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113420,7 +113491,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113431,12 +113502,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113473,7 +113544,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113490,12 +113561,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113523,7 +113594,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113540,7 +113611,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113573,7 +113644,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113593,12 +113664,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113626,7 +113697,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113643,12 +113714,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113672,7 +113743,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113689,12 +113760,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113735,7 +113806,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113752,12 +113823,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113785,7 +113856,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113802,12 +113873,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113831,7 +113902,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113848,12 +113919,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113881,7 +113952,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113896,12 +113967,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113925,7 +113996,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113942,12 +114013,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -113973,7 +114044,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -113984,12 +114055,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114012,7 +114083,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114029,12 +114100,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114062,7 +114133,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114079,12 +114150,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114109,7 +114180,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114129,12 +114200,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114162,7 +114233,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114173,12 +114244,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114206,7 +114277,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114217,12 +114288,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114274,7 +114345,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114285,12 +114356,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114315,7 +114386,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114326,12 +114397,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114355,7 +114426,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114375,12 +114446,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114408,7 +114479,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114419,7 +114490,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114452,7 +114523,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114469,12 +114540,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114502,7 +114573,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114519,12 +114590,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114552,7 +114623,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114569,12 +114640,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114599,7 +114670,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114616,12 +114687,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114665,7 +114736,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114676,12 +114747,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114709,7 +114780,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114720,7 +114791,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114777,7 +114848,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114794,12 +114865,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114827,7 +114898,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114838,12 +114909,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -114982,7 +115053,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -114993,12 +115064,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115027,7 +115098,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115044,12 +115115,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115092,7 +115163,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115109,12 +115180,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115142,7 +115213,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115159,12 +115230,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115192,7 +115263,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115209,12 +115280,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115242,7 +115313,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115259,12 +115330,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115289,7 +115360,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115306,12 +115377,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115339,7 +115410,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115350,12 +115421,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115380,7 +115451,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115403,12 +115474,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115442,7 +115513,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115460,12 +115531,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115490,7 +115561,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115501,7 +115572,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115534,7 +115605,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115545,7 +115616,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115578,7 +115649,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115595,12 +115666,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115628,7 +115699,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115645,12 +115716,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115678,7 +115749,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115695,12 +115766,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115724,7 +115795,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115741,12 +115812,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115771,7 +115842,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115788,12 +115859,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115843,7 +115914,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115860,12 +115931,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115929,7 +116000,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115946,12 +116017,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -115980,7 +116051,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -115997,12 +116068,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116027,7 +116098,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116044,12 +116115,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116113,7 +116184,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116130,12 +116201,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116163,7 +116234,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116183,12 +116254,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116216,7 +116287,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116233,12 +116304,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116266,7 +116337,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116277,12 +116348,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116318,7 +116389,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116335,12 +116406,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116365,7 +116436,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116385,12 +116456,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116418,7 +116489,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116435,12 +116506,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116468,7 +116539,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116485,12 +116556,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116515,7 +116586,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116532,12 +116603,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116565,7 +116636,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116585,12 +116656,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116618,7 +116689,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116635,12 +116706,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116677,7 +116748,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116694,12 +116765,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116727,7 +116798,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116744,12 +116815,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116777,7 +116848,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116797,12 +116868,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116825,7 +116896,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116845,12 +116916,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116879,7 +116950,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116896,12 +116967,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116929,7 +117000,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116946,12 +117017,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -116979,7 +117050,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -116996,12 +117067,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117029,7 +117100,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117046,12 +117117,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117079,7 +117150,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117090,12 +117161,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117125,7 +117196,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117142,12 +117213,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117172,7 +117243,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117189,12 +117260,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117223,7 +117294,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117234,12 +117305,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117263,7 +117334,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117280,12 +117351,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117313,7 +117384,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117330,12 +117401,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117359,7 +117430,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117370,12 +117441,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117403,7 +117474,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117420,12 +117491,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117453,7 +117524,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117470,12 +117541,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117503,7 +117574,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117520,12 +117591,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117554,7 +117625,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117571,12 +117642,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117604,7 +117675,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117615,12 +117686,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117644,7 +117715,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117657,19 +117728,19 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + @@ -117697,7 +117768,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117714,12 +117785,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117748,7 +117819,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117761,19 +117832,19 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + @@ -117801,7 +117872,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117818,12 +117889,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -117847,7 +117918,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -117864,12 +117935,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118022,7 +118093,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118039,12 +118110,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118072,7 +118143,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118089,12 +118160,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118122,7 +118193,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118139,12 +118210,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118172,7 +118243,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118189,12 +118260,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118222,7 +118293,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118233,7 +118304,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118266,7 +118337,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118283,12 +118354,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118316,7 +118387,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118333,12 +118404,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118366,7 +118437,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118383,12 +118454,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118413,7 +118484,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118424,12 +118495,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118456,7 +118527,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118473,12 +118544,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118506,7 +118577,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118523,12 +118594,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118552,7 +118623,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118569,12 +118640,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118779,7 +118850,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118790,12 +118861,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118826,7 +118897,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118843,12 +118914,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118886,7 +118957,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118903,12 +118974,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118937,7 +119008,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -118954,12 +119025,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -118987,7 +119058,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119004,12 +119075,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119056,7 +119127,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119073,12 +119144,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119114,7 +119185,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119131,12 +119202,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119161,7 +119232,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119181,12 +119252,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119214,7 +119285,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119231,12 +119302,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119261,7 +119332,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119278,12 +119349,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119323,7 +119394,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119340,12 +119411,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119369,7 +119440,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119386,12 +119457,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119415,7 +119486,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119432,12 +119503,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119465,7 +119536,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119485,12 +119556,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119514,7 +119585,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119525,12 +119596,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119574,7 +119645,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119591,12 +119662,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119624,7 +119695,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119641,12 +119712,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119674,7 +119745,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119691,12 +119762,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119721,7 +119792,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119738,12 +119809,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119788,7 +119859,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119805,12 +119876,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119838,7 +119909,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119849,12 +119920,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119882,7 +119953,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119902,12 +119973,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -119930,7 +120001,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -119947,12 +120018,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120024,7 +120095,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120035,12 +120106,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120064,7 +120135,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120081,12 +120152,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120126,7 +120197,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120143,12 +120214,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120177,7 +120248,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120194,12 +120265,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120223,7 +120294,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120240,12 +120311,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120274,7 +120345,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120291,12 +120362,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120323,7 +120394,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120334,12 +120405,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120380,7 +120451,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120397,12 +120468,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120427,7 +120498,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120444,12 +120515,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120478,7 +120549,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120489,12 +120560,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120522,7 +120593,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120539,12 +120610,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120579,7 +120650,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120599,12 +120670,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120660,7 +120731,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120677,12 +120748,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120706,7 +120777,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120723,12 +120794,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -120756,7 +120827,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120769,19 +120840,19 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + @@ -120809,7 +120880,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -120820,12 +120891,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130329,7 +130400,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130346,12 +130417,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130379,7 +130450,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130390,12 +130461,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130492,7 +130563,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130503,12 +130574,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130536,7 +130607,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130547,12 +130618,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130583,7 +130654,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130600,12 +130671,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130630,7 +130701,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130644,12 +130715,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130686,7 +130757,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130697,12 +130768,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130726,7 +130797,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130746,12 +130817,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130779,7 +130850,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130799,12 +130870,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130832,7 +130903,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130852,12 +130923,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130885,7 +130956,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -130896,12 +130967,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -130991,7 +131062,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131008,12 +131079,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131038,7 +131109,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131049,12 +131120,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131082,7 +131153,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131102,12 +131173,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131135,7 +131206,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131152,12 +131223,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131185,7 +131256,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131196,12 +131267,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131229,7 +131300,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131246,12 +131317,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131279,7 +131350,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131291,12 +131362,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131374,7 +131445,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131391,12 +131462,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131424,7 +131495,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131441,12 +131512,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131474,7 +131545,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131491,12 +131562,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131521,7 +131592,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131538,12 +131609,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131567,7 +131638,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131587,12 +131658,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131620,7 +131691,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131637,12 +131708,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131667,7 +131738,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131684,12 +131755,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131714,7 +131785,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131731,12 +131802,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131760,7 +131831,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131777,12 +131848,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131810,7 +131881,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131827,12 +131898,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131860,7 +131931,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131877,12 +131948,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131910,7 +131981,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131927,12 +131998,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -131983,7 +132054,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -131994,12 +132065,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132023,7 +132094,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132043,12 +132114,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132087,7 +132158,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132104,12 +132175,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132137,7 +132208,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132154,12 +132225,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132188,7 +132259,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132200,12 +132271,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132244,7 +132315,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132261,12 +132332,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132291,7 +132362,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132308,12 +132379,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132342,7 +132413,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132359,12 +132430,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132388,7 +132459,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132405,12 +132476,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132438,7 +132509,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132449,12 +132520,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132486,7 +132557,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132499,19 +132570,19 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + @@ -132539,7 +132610,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132556,12 +132627,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132585,7 +132656,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132596,12 +132667,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132629,7 +132700,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132640,12 +132711,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132669,7 +132740,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132686,12 +132757,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132719,7 +132790,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132730,12 +132801,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132759,7 +132830,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132776,12 +132847,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132806,7 +132877,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132817,12 +132888,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132850,7 +132921,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132861,12 +132932,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132891,7 +132962,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132908,12 +132979,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132937,7 +133008,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -132954,12 +133025,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -132987,7 +133058,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133004,12 +133075,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133037,7 +133108,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133048,12 +133119,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133077,7 +133148,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133094,12 +133165,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133127,7 +133198,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133144,12 +133215,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133173,7 +133244,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133190,12 +133261,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133224,7 +133295,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133241,12 +133312,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133270,7 +133341,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133287,12 +133358,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133317,7 +133388,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133334,12 +133405,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133363,7 +133434,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133383,7 +133454,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133631,7 +133702,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133642,12 +133713,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133671,7 +133742,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133688,12 +133759,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133718,7 +133789,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133735,12 +133806,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133790,7 +133861,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133807,12 +133878,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133840,7 +133911,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133854,12 +133925,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133888,7 +133959,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133899,12 +133970,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133928,7 +133999,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133945,12 +134016,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -133978,7 +134049,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -133995,12 +134066,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134024,7 +134095,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134041,12 +134112,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134071,7 +134142,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134088,12 +134159,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134117,7 +134188,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134130,19 +134201,19 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + @@ -134170,7 +134241,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134187,12 +134258,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134220,7 +134291,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134237,12 +134308,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134293,7 +134364,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134310,12 +134381,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134339,7 +134410,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134350,12 +134421,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134383,7 +134454,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134400,12 +134471,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134433,7 +134504,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134450,12 +134521,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134479,7 +134550,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134496,12 +134567,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134529,7 +134600,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134546,12 +134617,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134579,7 +134650,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134590,12 +134661,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134625,7 +134696,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134642,12 +134713,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134675,7 +134746,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134692,12 +134763,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134725,7 +134796,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134736,12 +134807,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134769,7 +134840,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134786,12 +134857,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134863,7 +134934,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134874,7 +134945,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134907,7 +134978,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134924,12 +134995,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -134953,7 +135024,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -134970,12 +135041,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135003,7 +135074,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135023,12 +135094,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135056,7 +135127,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135073,12 +135144,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135123,7 +135194,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135140,12 +135211,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135173,7 +135244,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135190,12 +135261,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135219,7 +135290,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135236,12 +135307,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135269,7 +135340,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135286,12 +135357,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135319,7 +135390,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135339,12 +135410,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135372,7 +135443,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135389,12 +135460,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135419,7 +135490,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135439,12 +135510,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135472,7 +135543,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135489,12 +135560,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135518,7 +135589,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135538,12 +135609,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135571,7 +135642,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135588,7 +135659,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135651,7 +135722,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135668,12 +135739,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135704,7 +135775,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135715,12 +135786,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135743,7 +135814,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135754,12 +135825,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135822,7 +135893,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135833,12 +135904,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135862,7 +135933,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135873,12 +135944,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135906,7 +135977,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135917,12 +135988,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135946,7 +136017,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -135957,12 +136028,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -135990,7 +136061,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136001,12 +136072,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136034,7 +136105,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136051,12 +136122,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136081,7 +136152,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136098,12 +136169,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136128,7 +136199,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136139,12 +136210,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136168,7 +136239,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136185,12 +136256,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136214,7 +136285,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136231,12 +136302,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136264,7 +136335,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136275,12 +136346,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136303,7 +136374,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136314,12 +136385,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136352,7 +136423,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136369,12 +136440,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136399,7 +136470,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136419,12 +136490,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136453,7 +136524,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136470,12 +136541,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136503,7 +136574,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136523,12 +136594,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136555,7 +136626,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136572,12 +136643,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136602,7 +136673,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136619,12 +136690,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136653,7 +136724,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136670,12 +136741,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136703,7 +136774,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136720,12 +136791,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136753,7 +136824,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136770,12 +136841,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136803,7 +136874,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136826,12 +136897,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -136908,7 +136979,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -136925,12 +136996,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137011,7 +137082,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137028,12 +137099,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137061,7 +137132,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137078,12 +137149,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137108,7 +137179,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137119,12 +137190,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137149,7 +137220,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137166,12 +137237,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137199,7 +137270,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137216,12 +137287,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137306,7 +137377,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137323,7 +137394,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137356,7 +137427,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137376,12 +137447,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137409,7 +137480,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137426,12 +137497,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137459,7 +137530,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137476,7 +137547,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137509,7 +137580,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137526,12 +137597,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137559,7 +137630,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137576,12 +137647,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137609,7 +137680,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137626,12 +137697,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137676,7 +137747,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137687,12 +137758,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137744,7 +137815,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137764,12 +137835,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137797,7 +137868,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137814,12 +137885,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137847,7 +137918,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137864,12 +137935,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137897,7 +137968,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137917,12 +137988,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -137976,7 +138047,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -137993,12 +138064,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138028,7 +138099,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138045,12 +138116,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138079,7 +138150,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138096,12 +138167,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138125,7 +138196,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138142,12 +138213,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138171,7 +138242,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138188,12 +138259,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138221,7 +138292,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138244,12 +138315,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138279,7 +138350,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138299,12 +138370,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138332,7 +138403,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138349,12 +138420,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138378,7 +138449,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138395,12 +138466,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138428,7 +138499,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138445,12 +138516,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138476,7 +138547,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138493,12 +138564,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138526,7 +138597,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138537,12 +138608,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138567,7 +138638,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138584,7 +138655,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138617,7 +138688,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138637,12 +138708,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138678,7 +138749,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138695,12 +138766,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138751,7 +138822,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138768,12 +138839,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138801,7 +138872,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138812,12 +138883,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138845,7 +138916,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138865,12 +138936,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138898,7 +138969,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138909,12 +138980,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138942,7 +139013,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -138959,12 +139030,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -138992,7 +139063,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139009,12 +139080,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139042,7 +139113,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139053,12 +139124,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139086,7 +139157,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139106,12 +139177,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139139,7 +139210,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139156,12 +139227,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139186,7 +139257,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139197,12 +139268,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139226,7 +139297,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139243,12 +139314,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139273,7 +139344,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139290,12 +139361,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139320,7 +139391,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139337,12 +139408,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139370,7 +139441,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139381,12 +139452,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139414,7 +139485,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139431,12 +139502,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139460,7 +139531,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139477,12 +139548,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139510,7 +139581,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139527,12 +139598,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139560,7 +139631,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139577,7 +139648,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139682,7 +139753,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139699,12 +139770,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139728,7 +139799,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139745,12 +139816,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139778,7 +139849,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139789,12 +139860,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139822,7 +139893,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139833,7 +139904,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139866,7 +139937,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139877,12 +139948,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139910,7 +139981,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139927,12 +139998,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -139960,7 +140031,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -139977,12 +140048,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -140010,7 +140081,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -140027,12 +140098,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -140057,7 +140128,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -140074,12 +140145,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -140104,7 +140175,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -140121,12 +140192,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -140155,7 +140226,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -140172,12 +140243,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -140205,7 +140276,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -140222,12 +140293,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -140255,7 +140326,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -140266,12 +140337,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -140299,7 +140370,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -140316,7 +140387,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143144,7 +143215,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143161,12 +143232,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143191,7 +143262,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143202,12 +143273,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143232,7 +143303,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143249,12 +143320,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143278,7 +143349,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143295,12 +143366,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143329,7 +143400,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143349,12 +143420,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143382,7 +143453,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143399,7 +143470,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143438,7 +143509,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143455,12 +143526,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143485,7 +143556,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143502,12 +143573,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143536,7 +143607,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143553,12 +143624,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143586,7 +143657,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143606,12 +143677,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143639,7 +143710,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143656,7 +143727,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143703,7 +143774,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143720,12 +143791,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143750,7 +143821,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143770,12 +143841,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143803,7 +143874,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143820,12 +143891,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143860,7 +143931,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143871,12 +143942,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143905,7 +143976,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143922,12 +143993,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -143955,7 +144026,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -143972,12 +144043,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144046,7 +144117,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144066,12 +144137,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144099,7 +144170,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144116,12 +144187,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144149,7 +144220,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144166,12 +144237,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144199,7 +144270,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144216,12 +144287,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144249,7 +144320,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144266,12 +144337,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144324,7 +144395,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144341,12 +144412,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144374,7 +144445,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144391,12 +144462,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144421,7 +144492,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144438,12 +144509,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144471,7 +144542,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144488,12 +144559,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144521,7 +144592,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144538,12 +144609,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144571,7 +144642,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144588,12 +144659,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144622,7 +144693,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144645,12 +144716,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144683,7 +144754,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144700,12 +144771,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144738,7 +144809,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144755,12 +144826,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144784,7 +144855,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144804,12 +144875,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144837,7 +144908,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144848,12 +144919,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144877,7 +144948,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144894,12 +144965,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144923,7 +144994,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144940,12 +145011,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -144969,7 +145040,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -144986,12 +145057,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145019,7 +145090,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145036,12 +145107,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145065,7 +145136,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145082,12 +145153,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145111,7 +145182,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145128,12 +145199,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145157,7 +145228,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145174,12 +145245,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145204,7 +145275,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145221,12 +145292,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145262,7 +145333,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145279,12 +145350,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145312,7 +145383,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145329,12 +145400,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145358,7 +145429,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145375,12 +145446,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145408,7 +145479,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145425,12 +145496,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145458,7 +145529,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145469,12 +145540,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145518,7 +145589,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145535,12 +145606,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145568,7 +145639,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145579,12 +145650,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145612,7 +145683,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145629,12 +145700,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145662,7 +145733,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145679,12 +145750,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145712,7 +145783,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145732,12 +145803,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145765,7 +145836,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145782,12 +145853,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145815,7 +145886,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145832,12 +145903,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145877,7 +145948,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145894,12 +145965,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145924,7 +145995,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145941,12 +146012,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -145975,7 +146046,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -145986,12 +146057,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146016,29 +146087,29 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + - + - + - + @@ -146066,7 +146137,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146086,12 +146157,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146119,7 +146190,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146130,12 +146201,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146159,7 +146230,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146176,12 +146247,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146209,7 +146280,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146226,12 +146297,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146255,7 +146326,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146272,12 +146343,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146305,7 +146376,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146322,12 +146393,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146355,7 +146426,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146372,7 +146443,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146407,7 +146478,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146424,12 +146495,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146457,7 +146528,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146474,12 +146545,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146523,7 +146594,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146534,12 +146605,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146567,7 +146638,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146578,12 +146649,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146611,7 +146682,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146628,12 +146699,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146657,7 +146728,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146674,12 +146745,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146703,7 +146774,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146714,12 +146785,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146784,7 +146855,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146801,12 +146872,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146831,7 +146902,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146848,12 +146919,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146877,7 +146948,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146894,12 +146965,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146927,7 +146998,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146944,12 +147015,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -146973,7 +147044,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -146984,12 +147055,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -147031,7 +147102,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147048,12 +147119,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -147081,7 +147152,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147101,12 +147172,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -147221,7 +147292,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147232,12 +147303,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -147265,7 +147336,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147282,12 +147353,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -147315,7 +147386,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147335,7 +147406,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147378,7 +147449,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147398,7 +147469,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147646,7 +147717,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147663,12 +147734,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -147693,7 +147764,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -147711,12 +147782,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148032,7 +148103,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148049,12 +148120,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148083,7 +148154,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148100,12 +148171,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148142,7 +148213,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148162,12 +148233,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148195,7 +148266,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148212,12 +148283,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148246,7 +148317,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148263,12 +148334,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148306,7 +148377,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148317,12 +148388,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148350,7 +148421,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148361,12 +148432,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148394,7 +148465,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148411,12 +148482,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148452,7 +148523,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148469,12 +148540,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148515,7 +148586,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148532,12 +148603,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148573,7 +148644,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148584,12 +148655,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148617,7 +148688,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148634,12 +148705,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148662,7 +148733,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148679,12 +148750,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148764,7 +148835,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148775,12 +148846,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148804,7 +148875,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148821,12 +148892,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -148854,7 +148925,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -148871,12 +148942,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149045,7 +149116,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149062,12 +149133,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149091,7 +149162,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149108,12 +149179,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149138,7 +149209,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149155,12 +149226,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149185,7 +149256,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149199,12 +149270,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149238,7 +149309,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149255,12 +149326,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149283,7 +149354,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149294,12 +149365,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149327,7 +149398,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149338,12 +149409,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149367,7 +149438,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149384,12 +149455,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149417,7 +149488,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149434,12 +149505,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149508,7 +149579,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149519,12 +149590,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149547,7 +149618,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149564,12 +149635,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149598,7 +149669,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149618,12 +149689,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149651,7 +149722,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149662,12 +149733,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149690,7 +149761,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149707,12 +149778,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149736,7 +149807,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149753,12 +149824,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149786,7 +149857,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149803,7 +149874,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149836,7 +149907,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149847,12 +149918,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149896,7 +149967,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149913,12 +149984,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149946,7 +150017,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -149966,12 +150037,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -149994,7 +150065,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -150011,12 +150082,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -150044,7 +150115,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -150061,12 +150132,12 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -150090,10 +150161,10 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -150125,10 +150196,10 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -150160,11 +150231,11 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -150196,10 +150267,10 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -150266,11 +150337,11 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -151529,11 +151600,11 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -152556,11 +152627,11 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + - + @@ -152592,7 +152663,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + @@ -152607,7 +152678,7 @@ Spelling note: "descendant" is a more correct spelling, but the spelli - + diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu2016may/hapi/validation/FhirInstanceValidator.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu2016may/hapi/validation/FhirInstanceValidator.java index f7721f971c2..e583381a5ee 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu2016may/hapi/validation/FhirInstanceValidator.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu2016may/hapi/validation/FhirInstanceValidator.java @@ -18,11 +18,12 @@ import org.apache.commons.lang3.time.DateUtils; import org.fhir.ucum.UcumService; import org.hl7.fhir.common.hapi.validation.ValidatorWrapper; import org.hl7.fhir.convertors.VersionConvertor_14_50; -import org.hl7.fhir.dstu2016may.terminologies.ValueSetExpander; +import org.hl7.fhir.exceptions.DefinitionException; import org.hl7.fhir.exceptions.TerminologyServiceException; import org.hl7.fhir.r5.context.IWorkerContext; import org.hl7.fhir.r5.formats.IParser; import org.hl7.fhir.r5.formats.ParserType; +import org.hl7.fhir.r5.model.CanonicalResource; import org.hl7.fhir.r5.utils.INarrativeGenerator; import org.hl7.fhir.r5.utils.IResourceValidator; import org.hl7.fhir.r5.model.Resource; @@ -31,6 +32,7 @@ import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.utilities.TerminologyServiceOptions; import org.hl7.fhir.utilities.TranslationServices; import org.hl7.fhir.utilities.validation.ValidationMessage; +import org.hl7.fhir.utilities.validation.ValidationOptions; import org.w3c.dom.*; import org.w3c.dom.Element; @@ -326,17 +328,27 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IValid } @Override - public List allConformanceResources() { + public List allConformanceResources() { throw new UnsupportedOperationException(); } + @Override + public void generateSnapshot(org.hl7.fhir.r5.model.StructureDefinition theStructureDefinition) throws DefinitionException, FHIRException { + // nothing yet + } + @Override public String getLinkForUrl(String corePath, String url) { throw new UnsupportedOperationException(); } @Override - public void generateSnapshot(org.hl7.fhir.r5.model.StructureDefinition p) throws FHIRException { + public Map getBinaries() { + throw new UnsupportedOperationException(); + } + + @Override + public void generateSnapshot(org.hl7.fhir.r5.model.StructureDefinition p, boolean theb) throws FHIRException { // nothing yet } @@ -469,7 +481,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IValid } @Override - public ValidationResult validateCode(TerminologyServiceOptions options, String system, String code, String display) { + public ValidationResult validateCode(ValidationOptions options, String system, String code, String display) { return null; } @@ -646,14 +658,9 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IValid return myWrap.supportsSystem(system); } - @Override - public Set typeTails() { - return myWrap.typeTails(); - } - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { @@ -669,7 +676,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IValid } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { if (vs != null) { @@ -684,7 +691,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IValid } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { Coding convertedCode = null; ValueSet convertedVs = null; @@ -704,7 +711,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IValid } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { CodeableConcept convertedCode = null; ValueSet convertedVs = null; @@ -723,21 +730,6 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IValid return convertValidationResult(result); } - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent vsi) { - ValueSet.ConceptSetComponent conceptSetComponent = null; - if (vsi != null) { - try { - conceptSetComponent = VersionConvertor_14_50.convertConceptSetComponent(vsi); - } catch (FHIRException e) { - throw new InternalErrorException(e); - } - } - - org.hl7.fhir.dstu2016may.utils.IWorkerContext.ValidationResult result = myWrap.validateCode(system, code, display, conceptSetComponent); - return convertValidationResult(result); - } - } private static class ResourceKey { diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu3/hapi/validation/FhirInstanceValidator.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu3/hapi/validation/FhirInstanceValidator.java index 25c4cd84b3e..ba3c7a8755f 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu3/hapi/validation/FhirInstanceValidator.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/dstu3/hapi/validation/FhirInstanceValidator.java @@ -5,7 +5,6 @@ import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; import ca.uhn.fhir.validation.IInstanceValidatorModule; import ca.uhn.fhir.validation.IValidationContext; -import ca.uhn.fhir.validation.IValidatorModule; import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; import org.apache.commons.lang3.Validate; @@ -18,20 +17,28 @@ import org.hl7.fhir.convertors.VersionConvertor_30_50; import org.hl7.fhir.dstu3.hapi.ctx.DefaultProfileValidationSupport; import org.hl7.fhir.dstu3.hapi.ctx.HapiWorkerContext; import org.hl7.fhir.dstu3.hapi.ctx.IValidationSupport; -import org.hl7.fhir.dstu3.model.*; +import org.hl7.fhir.dstu3.model.CodeSystem; +import org.hl7.fhir.dstu3.model.CodeableConcept; +import org.hl7.fhir.dstu3.model.Coding; +import org.hl7.fhir.dstu3.model.ImplementationGuide; +import org.hl7.fhir.dstu3.model.Questionnaire; +import org.hl7.fhir.dstu3.model.Resource; +import org.hl7.fhir.dstu3.model.StructureDefinition; +import org.hl7.fhir.dstu3.model.ValueSet; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.exceptions.TerminologyServiceException; import org.hl7.fhir.r5.context.IWorkerContext; import org.hl7.fhir.r5.formats.IParser; import org.hl7.fhir.r5.formats.ParserType; +import org.hl7.fhir.r5.model.CanonicalResource; import org.hl7.fhir.r5.terminologies.ValueSetExpander; import org.hl7.fhir.r5.utils.INarrativeGenerator; import org.hl7.fhir.r5.utils.IResourceValidator; import org.hl7.fhir.r5.utils.IResourceValidator.BestPracticeWarningLevel; -import org.hl7.fhir.utilities.TerminologyServiceOptions; import org.hl7.fhir.utilities.TranslationServices; import org.hl7.fhir.utilities.validation.ValidationMessage; import org.hl7.fhir.utilities.validation.ValidationMessage.IssueSeverity; +import org.hl7.fhir.utilities.validation.ValidationOptions; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; @@ -40,7 +47,13 @@ import javax.annotation.Nonnull; import javax.annotation.Nullable; import java.net.MalformedURLException; import java.net.URL; -import java.util.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; import java.util.concurrent.TimeUnit; @SuppressWarnings({"PackageAccessibility", "Duplicates"}) @@ -331,7 +344,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public List allConformanceResources() { + public List allConformanceResources() { throw new UnsupportedOperationException(); } @@ -340,11 +353,21 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta throw new UnsupportedOperationException(); } + @Override + public Map getBinaries() { + return null; + } + @Override public void generateSnapshot(org.hl7.fhir.r5.model.StructureDefinition p) throws FHIRException { // nothing yet } + @Override + public void generateSnapshot(org.hl7.fhir.r5.model.StructureDefinition theStructureDefinition, boolean theB) { + // nothing yet + } + @Override public org.hl7.fhir.r5.model.Parameters getExpansionParameters() { return myExpansionProfile; @@ -642,18 +665,13 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public Set typeTails() { - return myWrap.typeTails(); - } - - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display) { org.hl7.fhir.dstu3.context.IWorkerContext.ValidationResult result = myWrap.validateCode(system, code, display); return convertValidationResult(result); } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { @@ -669,7 +687,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { if (vs != null) { @@ -684,7 +702,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { Coding convertedCode = null; ValueSet convertedVs = null; @@ -704,7 +722,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { CodeableConcept convertedCode = null; ValueSet convertedVs = null; @@ -723,21 +741,6 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta return convertValidationResult(result); } - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent vsi) { - ValueSet.ConceptSetComponent conceptSetComponent = null; - if (vsi != null) { - try { - conceptSetComponent = VersionConvertor_30_50.convertConceptSetComponent(vsi); - } catch (FHIRException e) { - throw new InternalErrorException(e); - } - } - - org.hl7.fhir.dstu3.context.IWorkerContext.ValidationResult result = myWrap.validateCode(system, code, display, conceptSetComponent); - return convertValidationResult(result); - } - } private static class ResourceKey { diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/instance/hapi/validation/FhirInstanceValidator.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/instance/hapi/validation/FhirInstanceValidator.java index d90fcc64124..a92e2a957af 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/instance/hapi/validation/FhirInstanceValidator.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/instance/hapi/validation/FhirInstanceValidator.java @@ -1,17 +1,24 @@ package org.hl7.fhir.instance.hapi.validation; -import ca.uhn.fhir.context.*; +import ca.uhn.fhir.context.BaseRuntimeElementDefinition; +import ca.uhn.fhir.context.ConfigurationException; +import ca.uhn.fhir.context.FhirContext; +import ca.uhn.fhir.context.FhirVersionEnum; +import ca.uhn.fhir.context.RuntimePrimitiveDatatypeDefinition; import ca.uhn.fhir.rest.api.Constants; import ca.uhn.fhir.rest.api.EncodingEnum; import ca.uhn.fhir.rest.server.exceptions.InternalErrorException; import ca.uhn.fhir.util.XmlUtil; import ca.uhn.fhir.validation.IInstanceValidatorModule; import ca.uhn.fhir.validation.IValidationContext; -import ca.uhn.fhir.validation.IValidatorModule; import com.github.benmanes.caffeine.cache.CacheLoader; import com.github.benmanes.caffeine.cache.Caffeine; import com.github.benmanes.caffeine.cache.LoadingCache; -import com.google.gson.*; +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; +import com.google.gson.JsonArray; +import com.google.gson.JsonElement; +import com.google.gson.JsonObject; import org.apache.commons.io.IOUtils; import org.apache.commons.lang3.Validate; import org.apache.commons.lang3.builder.EqualsBuilder; @@ -20,13 +27,18 @@ import org.fhir.ucum.UcumService; import org.hl7.fhir.converter.NullVersionConverterAdvisor50; import org.hl7.fhir.convertors.VersionConvertorAdvisor50; import org.hl7.fhir.convertors.VersionConvertor_10_50; -import org.hl7.fhir.dstu2.model.*; +import org.hl7.fhir.dstu2.model.CodeableConcept; +import org.hl7.fhir.dstu2.model.Coding; +import org.hl7.fhir.dstu2.model.Questionnaire; +import org.hl7.fhir.dstu2.model.StructureDefinition; +import org.hl7.fhir.dstu2.model.ValueSet; import org.hl7.fhir.exceptions.DefinitionException; import org.hl7.fhir.exceptions.FHIRException; import org.hl7.fhir.exceptions.TerminologyServiceException; import org.hl7.fhir.r5.context.IWorkerContext; import org.hl7.fhir.r5.formats.IParser; import org.hl7.fhir.r5.formats.ParserType; +import org.hl7.fhir.r5.model.CanonicalResource; import org.hl7.fhir.r5.model.CodeSystem; import org.hl7.fhir.r5.model.Parameters; import org.hl7.fhir.r5.terminologies.ValueSetExpander; @@ -36,10 +48,10 @@ import org.hl7.fhir.r5.utils.IResourceValidator; import org.hl7.fhir.r5.utils.IResourceValidator.BestPracticeWarningLevel; import org.hl7.fhir.r5.utils.IResourceValidator.IdStatus; import org.hl7.fhir.r5.validation.InstanceValidator; -import org.hl7.fhir.utilities.TerminologyServiceOptions; import org.hl7.fhir.utilities.TranslationServices; import org.hl7.fhir.utilities.validation.ValidationMessage; import org.hl7.fhir.utilities.validation.ValidationMessage.IssueSeverity; +import org.hl7.fhir.utilities.validation.ValidationOptions; import org.w3c.dom.Document; import org.w3c.dom.Element; import org.w3c.dom.NodeList; @@ -48,7 +60,12 @@ import java.io.IOException; import java.io.InputStream; import java.net.MalformedURLException; import java.net.URL; -import java.util.*; +import java.util.ArrayList; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; import java.util.concurrent.TimeUnit; import static org.apache.commons.lang3.StringUtils.isBlank; @@ -488,7 +505,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public List allConformanceResources() { + public List allConformanceResources() { throw new UnsupportedOperationException(); } @@ -497,11 +514,21 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } + @Override + public void generateSnapshot(org.hl7.fhir.r5.model.StructureDefinition theStructureDefinition, boolean theB) { + + } + @Override public String getLinkForUrl(String corePath, String url) { throw new UnsupportedOperationException(); } + @Override + public Map getBinaries() { + return null; + } + @Override public Parameters getExpansionParameters() { return myExpansionProfile; @@ -787,18 +814,13 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public Set typeTails() { - throw new UnsupportedOperationException(); - } - - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display) { org.hl7.fhir.dstu2.utils.IWorkerContext.ValidationResult result = myWrap.validateCode(system, code, display); return convertValidationResult(result); } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { @@ -814,7 +836,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { if (vs != null) { @@ -830,7 +852,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { Coding convertedCode = null; ValueSet convertedVs = null; @@ -850,7 +872,7 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { CodeableConcept convertedCode = null; ValueSet convertedVs = null; @@ -869,21 +891,6 @@ public class FhirInstanceValidator extends BaseValidatorBridge implements IInsta return convertValidationResult(result); } - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent vsi) { - ValueSet.ConceptSetComponent conceptSetComponent = null; - if (vsi != null) { - try { - conceptSetComponent = new VersionConvertor_10_50(myAdvisor).convertConceptSetComponent(vsi); - } catch (FHIRException e) { - throw new InternalErrorException(e); - } - } - - org.hl7.fhir.dstu2.utils.IWorkerContext.ValidationResult result = myWrap.validateCode(system, code, display, conceptSetComponent); - return convertValidationResult(result); - } - } diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/r4/hapi/validation/FhirInstanceValidator.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/r4/hapi/validation/FhirInstanceValidator.java index 2bb54771eb2..d7c52d229a1 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/r4/hapi/validation/FhirInstanceValidator.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/r4/hapi/validation/FhirInstanceValidator.java @@ -18,10 +18,18 @@ import org.hl7.fhir.exceptions.TerminologyServiceException; import org.hl7.fhir.r4.hapi.ctx.DefaultProfileValidationSupport; import org.hl7.fhir.r4.hapi.ctx.HapiWorkerContext; import org.hl7.fhir.r4.hapi.ctx.IValidationSupport; -import org.hl7.fhir.r4.model.*; +import org.hl7.fhir.r4.model.CodeSystem; +import org.hl7.fhir.r4.model.CodeableConcept; +import org.hl7.fhir.r4.model.Coding; +import org.hl7.fhir.r4.model.ImplementationGuide; +import org.hl7.fhir.r4.model.Questionnaire; +import org.hl7.fhir.r4.model.Resource; +import org.hl7.fhir.r4.model.StructureDefinition; +import org.hl7.fhir.r4.model.ValueSet; import org.hl7.fhir.r5.context.IWorkerContext; import org.hl7.fhir.r5.formats.IParser; import org.hl7.fhir.r5.formats.ParserType; +import org.hl7.fhir.r5.model.CanonicalResource; import org.hl7.fhir.r5.terminologies.ValueSetExpander; import org.hl7.fhir.r5.utils.INarrativeGenerator; import org.hl7.fhir.r5.utils.IResourceValidator; @@ -30,10 +38,17 @@ import org.hl7.fhir.utilities.TerminologyServiceOptions; import org.hl7.fhir.utilities.TranslationServices; import org.hl7.fhir.utilities.validation.ValidationMessage; import org.hl7.fhir.utilities.validation.ValidationMessage.IssueSeverity; +import org.hl7.fhir.utilities.validation.ValidationOptions; import javax.annotation.Nonnull; import javax.annotation.Nullable; -import java.util.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; import java.util.concurrent.TimeUnit; @SuppressWarnings({"PackageAccessibility", "Duplicates"}) @@ -270,7 +285,7 @@ public class FhirInstanceValidator extends org.hl7.fhir.r4.hapi.validation.BaseV } @Override - public List allConformanceResources() { + public List allConformanceResources() { throw new UnsupportedOperationException(); } @@ -279,6 +294,11 @@ public class FhirInstanceValidator extends org.hl7.fhir.r4.hapi.validation.BaseV // nothing yet } + @Override + public void generateSnapshot(org.hl7.fhir.r5.model.StructureDefinition theStructureDefinition, boolean theB) { + + } + @Override public org.hl7.fhir.r5.model.Parameters getExpansionParameters() { return myExpansionProfile; @@ -570,18 +590,17 @@ public class FhirInstanceValidator extends org.hl7.fhir.r4.hapi.validation.BaseV } @Override - public Set typeTails() { - return myWrap.typeTails(); - } - - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display) { - org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, system, code, display); + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display) { + org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(toValidationOptions(theOptions), system, code, display); return convertValidationResult(result); } + private TerminologyServiceOptions toValidationOptions(ValidationOptions theOptions) { + return new TerminologyServiceOptions(); + } + @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { @@ -592,12 +611,12 @@ public class FhirInstanceValidator extends org.hl7.fhir.r4.hapi.validation.BaseV throw new InternalErrorException(e); } - org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, system, code, display, convertedVs); + org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(toValidationOptions(theOptions), system, code, display, convertedVs); return convertValidationResult(result); } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { if (vs != null) { @@ -607,12 +626,12 @@ public class FhirInstanceValidator extends org.hl7.fhir.r4.hapi.validation.BaseV throw new InternalErrorException(e); } - org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, Constants.CODESYSTEM_VALIDATE_NOT_NEEDED, code, null, convertedVs); + org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(toValidationOptions(theOptions), Constants.CODESYSTEM_VALIDATE_NOT_NEEDED, code, null, convertedVs); return convertValidationResult(result); } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { Coding convertedCode = null; ValueSet convertedVs = null; @@ -627,12 +646,12 @@ public class FhirInstanceValidator extends org.hl7.fhir.r4.hapi.validation.BaseV throw new InternalErrorException(e); } - org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, convertedCode, convertedVs); + org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(toValidationOptions(theOptions), convertedCode, convertedVs); return convertValidationResult(result); } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { CodeableConcept convertedCode = null; ValueSet convertedVs = null; @@ -647,30 +666,21 @@ public class FhirInstanceValidator extends org.hl7.fhir.r4.hapi.validation.BaseV throw new InternalErrorException(e); } - org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, convertedCode, convertedVs); + org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(toValidationOptions(theOptions), convertedCode, convertedVs); return convertValidationResult(result); } - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent vsi) { - ValueSet.ConceptSetComponent conceptSetComponent = null; - if (vsi != null) { - try { - conceptSetComponent = org.hl7.fhir.convertors.conv40_50.ValueSet.convertConceptSetComponent(vsi); - } catch (FHIRException e) { - throw new InternalErrorException(e); - } - } - - org.hl7.fhir.r4.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, system, code, display, conceptSetComponent); - return convertValidationResult(result); - } @Override public String getLinkForUrl(String corePath, String url) { throw new UnsupportedOperationException(); } + @Override + public Map getBinaries() { + return null; + } + } private static class ResourceKey { diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/FhirInstanceValidator.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/FhirInstanceValidator.java index d8478c2d77f..02a3fd839d2 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/FhirInstanceValidator.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/FhirInstanceValidator.java @@ -29,14 +29,20 @@ import org.hl7.fhir.r5.utils.FHIRPathEngine; import org.hl7.fhir.r5.utils.INarrativeGenerator; import org.hl7.fhir.r5.utils.IResourceValidator; import org.hl7.fhir.r5.utils.IResourceValidator.BestPracticeWarningLevel; -import org.hl7.fhir.utilities.TerminologyServiceOptions; import org.hl7.fhir.utilities.TranslationServices; import org.hl7.fhir.utilities.validation.ValidationMessage; import org.hl7.fhir.utilities.validation.ValidationMessage.IssueSeverity; +import org.hl7.fhir.utilities.validation.ValidationOptions; import javax.annotation.Nonnull; import javax.annotation.Nullable; -import java.util.*; +import java.util.ArrayList; +import java.util.Arrays; +import java.util.Collections; +import java.util.HashSet; +import java.util.List; +import java.util.Map; +import java.util.Set; import java.util.concurrent.TimeUnit; @SuppressWarnings({"PackageAccessibility", "Duplicates"}) @@ -273,7 +279,7 @@ public class FhirInstanceValidator extends org.hl7.fhir.r5.hapi.validation.BaseV } @Override - public List allConformanceResources() { + public List allConformanceResources() { throw new UnsupportedOperationException(); } @@ -282,11 +288,21 @@ public class FhirInstanceValidator extends org.hl7.fhir.r5.hapi.validation.BaseV // nothing yet } + @Override + public void generateSnapshot(StructureDefinition theStructureDefinition, boolean theB) { + + } + @Override public String getLinkForUrl(String corePath, String url) { throw new UnsupportedOperationException(); } + @Override + public Map getBinaries() { + return null; + } + @Override public org.hl7.fhir.r5.model.Parameters getExpansionParameters() { return myExpansionProfile; @@ -579,18 +595,13 @@ public class FhirInstanceValidator extends org.hl7.fhir.r5.hapi.validation.BaseV } @Override - public Set typeTails() { - return myWrap.typeTails(); - } - - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display) { org.hl7.fhir.r5.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, system, code, display); return convertValidationResult(result); } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { @@ -606,7 +617,7 @@ public class FhirInstanceValidator extends org.hl7.fhir.r5.hapi.validation.BaseV } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, String code, org.hl7.fhir.r5.model.ValueSet vs) { ValueSet convertedVs = null; try { if (vs != null) { @@ -621,7 +632,7 @@ public class FhirInstanceValidator extends org.hl7.fhir.r5.hapi.validation.BaseV } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.Coding code, org.hl7.fhir.r5.model.ValueSet vs) { Coding convertedCode = null; ValueSet convertedVs = null; @@ -641,7 +652,7 @@ public class FhirInstanceValidator extends org.hl7.fhir.r5.hapi.validation.BaseV } @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { + public ValidationResult validateCode(ValidationOptions theOptions, org.hl7.fhir.r5.model.CodeableConcept code, org.hl7.fhir.r5.model.ValueSet vs) { CodeableConcept convertedCode = null; ValueSet convertedVs = null; @@ -660,20 +671,6 @@ public class FhirInstanceValidator extends org.hl7.fhir.r5.hapi.validation.BaseV return convertValidationResult(result); } - @Override - public ValidationResult validateCode(TerminologyServiceOptions theOptions, String system, String code, String display, org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent vsi) { - ValueSet.ConceptSetComponent conceptSetComponent = null; - if (vsi != null) { - try { - conceptSetComponent = vsi; - } catch (FHIRException e) { - throw new InternalErrorException(e); - } - } - - org.hl7.fhir.r5.context.IWorkerContext.ValidationResult result = myWrap.validateCode(theOptions, system, code, display, conceptSetComponent); - return convertValidationResult(result); - } } diff --git a/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/PrePopulatedValidationSupport.java b/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/PrePopulatedValidationSupport.java index a2d6ac628ba..7faec367141 100644 --- a/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/PrePopulatedValidationSupport.java +++ b/hapi-fhir-validation/src/main/java/org/hl7/fhir/r5/hapi/validation/PrePopulatedValidationSupport.java @@ -92,7 +92,7 @@ public class PrePopulatedValidationSupport implements IValidationSupport { addToMap(theStructureDefinition, myStructureDefinitions, theStructureDefinition.getUrl()); } - private void addToMap(T theStructureDefinition, Map map, String theUrl) { + private void addToMap(T theStructureDefinition, Map map, String theUrl) { if (isNotBlank(theUrl)) { map.put(theUrl, theStructureDefinition); diff --git a/hapi-fhir-validation/src/test/java/org/hl7/fhir/dstu3/hapi/validation/ResourceValidatorDstu3Test.java b/hapi-fhir-validation/src/test/java/org/hl7/fhir/dstu3/hapi/validation/ResourceValidatorDstu3Test.java index fca5d67377a..98b8429cd34 100644 --- a/hapi-fhir-validation/src/test/java/org/hl7/fhir/dstu3/hapi/validation/ResourceValidatorDstu3Test.java +++ b/hapi-fhir-validation/src/test/java/org/hl7/fhir/dstu3/hapi/validation/ResourceValidatorDstu3Test.java @@ -333,7 +333,7 @@ public class ResourceValidatorDstu3Test { TestPatientFor327 patient = new TestPatientFor327(); patient.setBirthDate(new Date()); patient.setId("123"); - patient.getText().setDivAsString("
FOO
"); + patient.getText().setDivAsString("
FOO
"); patient.getText().setStatus(NarrativeStatus.GENERATED); patient.getLanguageElement().setValue("en"); patient.addExtension().setUrl("http://foo").setValue(new StringType("MOD")); @@ -478,7 +478,7 @@ public class ResourceValidatorDstu3Test { private static final long serialVersionUID = 1L; @Child(name = "testCondition") - @ca.uhn.fhir.model.api.annotation.Extension(url = "testCondition", definedLocally = true, isModifier = false) + @ca.uhn.fhir.model.api.annotation.Extension(url = "http://testCondition", definedLocally = true, isModifier = false) private List testConditions = null; public List getConditions() { diff --git a/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/FhirInstanceValidatorR5Test.java b/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/FhirInstanceValidatorR5Test.java index 888127d1e6c..c9f23538e15 100644 --- a/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/FhirInstanceValidatorR5Test.java +++ b/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/FhirInstanceValidatorR5Test.java @@ -18,7 +18,6 @@ import org.hl7.fhir.r5.hapi.validation.FhirInstanceValidator; import org.hl7.fhir.r5.hapi.validation.ValidationSupportChain; import org.hl7.fhir.r5.model.*; import org.hl7.fhir.r5.model.CodeSystem.ConceptDefinitionComponent; -import org.hl7.fhir.r5.model.Observation.ObservationStatus; import org.hl7.fhir.r5.model.ValueSet.ConceptSetComponent; import org.hl7.fhir.r5.model.ValueSet.ValueSetExpansionComponent; import org.hl7.fhir.r5.terminologies.ValueSetExpander; @@ -160,7 +159,7 @@ public class FhirInstanceValidatorR5Test { String valueSetUrl = theInvocation.getArgument(4, String.class); IContextValidationSupport.CodeValidationResult retVal; if (myValidConcepts.contains(system + "___" + code)) { - retVal = new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent(new CodeType(code))); + retVal = new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent((code))); } else { retVal = myDefaultValidationSupport.validateCode(ctx, system, code, display, valueSetUrl); } @@ -261,7 +260,7 @@ public class FhirInstanceValidatorR5Test { public void testValidateDoesntEnforceBestPracticesByDefault() { Observation input = new Observation(); input.getText().setDiv(new XhtmlNode().setValue("
AA
")).setStatus(Narrative.NarrativeStatus.GENERATED); - input.setStatus(ObservationStatus.AMENDED); + input.setStatus(Enumerations.ObservationStatus.AMENDED); input.getCode().addCoding().setSystem("http://loinc.org").setCode("1234").setDisplay("FOO"); FhirInstanceValidator instanceModule; @@ -369,7 +368,7 @@ public class FhirInstanceValidatorR5Test { @Ignore public void testCompareTimesWithDifferentTimezones() { Procedure procedure = new Procedure(); - procedure.setStatus(Procedure.ProcedureStatus.COMPLETED); + procedure.setStatus(Enumerations.EventStatus.COMPLETED); procedure.getSubject().setReference("Patient/1"); procedure.getCode().setText("Some proc"); @@ -729,7 +728,7 @@ public class FhirInstanceValidatorR5Test { input.addIdentifier().setSystem("http://acme").setValue("12345"); input.getEncounter().setReference("http://foo.com/Encounter/9"); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().addCoding().setSystem("http://loinc.org").setCode("12345"); myInstanceVal.setValidationSupport(myMockSupport); @@ -750,7 +749,7 @@ public class FhirInstanceValidatorR5Test { input.addIdentifier().setSystem("http://acme").setValue("12345"); input.getEncounter().setReference("http://foo.com/Encounter/9"); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().addCoding().setSystem("http://loinc.org").setCode("12345"); myInstanceVal.setValidationSupport(myMockSupport); @@ -772,7 +771,7 @@ public class FhirInstanceValidatorR5Test { input.getMeta().addProfile("http://foo/structuredefinition/myprofile"); input.getCode().addCoding().setSystem("http://loinc.org").setCode("12345"); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); myInstanceVal.setValidationSupport(myMockSupport); ValidationResult output = myVal.validateWithResult(input); @@ -800,7 +799,7 @@ public class FhirInstanceValidatorR5Test { Observation input = new Observation(); input.getText().setDiv(new XhtmlNode().setValue("
AA
")).setStatus(Narrative.NarrativeStatus.GENERATED); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().setText("No code here!"); ourLog.info(ourCtx.newXmlParser().setPrettyPrint(true).encodeResourceToString(input)); @@ -825,7 +824,7 @@ public class FhirInstanceValidatorR5Test { ValidationResult output = myVal.validateWithResult(input); logResultsAndReturnAll(output); assertEquals( - "The value provided ('notvalidcode') is not in the value set http://hl7.org/fhir/ValueSet/observation-status|4.1.0 (http://hl7.org/fhir/ValueSet/observation-status, and a code is required from this value set) (error message = Unknown code[notvalidcode] in system[(none)])", + "The value provided ('notvalidcode') is not in the value set http://hl7.org/fhir/ValueSet/observation-status|4.2.0 (http://hl7.org/fhir/ValueSet/observation-status, and a code is required from this value set) (error message = Unknown code[notvalidcode] in system[(none)])", output.getMessages().get(0).getMessage()); } @@ -836,7 +835,7 @@ public class FhirInstanceValidatorR5Test { myInstanceVal.setValidationSupport(myMockSupport); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().addCoding().setSystem("http://loinc.org").setCode("12345"); ValidationResult output = myVal.validateWithResult(input); @@ -853,7 +852,7 @@ public class FhirInstanceValidatorR5Test { myInstanceVal.setValidationSupport(myMockSupport); addValidConcept("http://acme.org", "12345"); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().addCoding().setSystem("http://acme.org").setCode("9988877"); ValidationResult output = myVal.validateWithResult(input); @@ -871,7 +870,7 @@ public class FhirInstanceValidatorR5Test { myInstanceVal.setValidationSupport(myMockSupport); addValidConcept("http://loinc.org", "12345"); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().addCoding().setSystem("http://loinc.org").setCode("12345"); ValidationResult output = myVal.validateWithResult(input); @@ -891,7 +890,7 @@ public class FhirInstanceValidatorR5Test { myInstanceVal.setValidationSupport(myMockSupport); addValidConcept("http://loinc.org", "12345"); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().addCoding().setSystem("http://loinc.org").setCode("1234"); ValidationResult output = myVal.validateWithResult(input); @@ -908,7 +907,7 @@ public class FhirInstanceValidatorR5Test { myInstanceVal.setValidationSupport(myMockSupport); addValidConcept("http://acme.org", "12345"); - input.setStatus(ObservationStatus.FINAL); + input.setStatus(Enumerations.ObservationStatus.FINAL); input.getCode().addCoding().setSystem("http://acme.org").setCode("12345"); ValidationResult output = myVal.validateWithResult(input); diff --git a/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/QuestionnaireResponseValidatorR5Test.java b/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/QuestionnaireResponseValidatorR5Test.java index 474a80836be..6e8911c1e41 100644 --- a/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/QuestionnaireResponseValidatorR5Test.java +++ b/hapi-fhir-validation/src/test/java/org/hl7/fhir/r5/validation/QuestionnaireResponseValidatorR5Test.java @@ -121,7 +121,7 @@ public class QuestionnaireResponseValidatorR5Test { questionnaireItemTypes[14] = QuestionnaireItemType.REFERENCE; questionnaireItemTypes[15] = QuestionnaireItemType.QUANTITY; - Type[] answerValues = new Type[itemCnt]; + DataType[] answerValues = new DataType[itemCnt]; answerValues[0] = new BooleanType(true); answerValues[1] = new DecimalType(42.0); answerValues[2] = new IntegerType(42); @@ -359,7 +359,7 @@ public class QuestionnaireResponseValidatorR5Test { when(myValSupport.fetchResource(any(FhirContext.class), eq(ValueSet.class), eq(valueSetRef))) .thenReturn(options); when(myValSupport.validateCode(any(FhirContext.class), eq(codeSystemUrl), eq(codeValue), any(String.class), anyString())) - .thenReturn(new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent(new CodeType(codeValue)))); + .thenReturn(new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent(codeValue))); IParser xmlParser = ourCtx.newXmlParser().setPrettyPrint(true); String qXml = xmlParser.encodeResourceToString(q); @@ -416,7 +416,7 @@ public class QuestionnaireResponseValidatorR5Test { when(myValSupport.fetchResource(any(FhirContext.class), eq(ValueSet.class), eq(valueSetRef))) .thenReturn(options); when(myValSupport.validateCode(any(FhirContext.class), eq(codeSystemUrl), eq(codeValue), any(String.class), anyString())) - .thenReturn(new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent(new CodeType(codeValue)))); + .thenReturn(new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent((codeValue)))); IParser xmlParser = ourCtx.newXmlParser().setPrettyPrint(true); String qXml = xmlParser.encodeResourceToString(q); @@ -679,7 +679,7 @@ public class QuestionnaireResponseValidatorR5Test { when(myValSupport.fetchResource(any(FhirContext.class), eq(Questionnaire.class), eq(qa.getQuestionnaire()))).thenReturn(questionnaire); when(myValSupport.fetchResource(any(FhirContext.class), eq(ValueSet.class), eq(ID_VS_SCHOOLTYPE))).thenReturn(iccSchoolTypeVs); - when(myValSupport.validateCodeInValueSet(any(), any(), any(), any(), any(ValueSet.class) )).thenReturn(new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent(new CodeType(CODE_ICC_SCHOOLTYPE_PT)))); + when(myValSupport.validateCodeInValueSet(any(), any(), any(), any(), any(ValueSet.class) )).thenReturn(new IContextValidationSupport.CodeValidationResult(new ConceptDefinitionComponent(CODE_ICC_SCHOOLTYPE_PT))); ValidationResult errors = myVal.validateWithResult(qa); ourLog.info(errors.toString()); diff --git a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ResourceMinimizerMojo.java b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ResourceMinimizerMojo.java index b97672c8fd7..c5945196fc7 100644 --- a/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ResourceMinimizerMojo.java +++ b/hapi-tinder-plugin/src/main/java/ca/uhn/fhir/tinder/ResourceMinimizerMojo.java @@ -261,6 +261,14 @@ public class ResourceMinimizerMojo extends AbstractMojo { byteCount += m.getByteCount(); fileCount += m.getFileCount(); + m = new ResourceMinimizerMojo(); + m.myCtx = ctxR5; + m.targetDirectory = new File("./hapi-fhir-validation-resources-r5/src/main/resources/org/hl7/fhir/r5/model/extension"); + m.fhirVersion = "R5"; + m.execute(); + byteCount += m.getByteCount(); + fileCount += m.getFileCount(); + ourLog.info("Trimmed {} files", fileCount); ourLog.info("Trimmed {} bytes", FileUtils.byteCountToDisplaySize(byteCount)); } diff --git a/pom.xml b/pom.xml index df81584812d..16d54eeadcd 100644 --- a/pom.xml +++ b/pom.xml @@ -598,7 +598,7 @@ - 4.1.7-SNAPSHOT + 4.1.42-SNAPSHOT 1.0.2 -Dfile.encoding=UTF-8 -Xmx2048m